Using Jsoup is it possible to remove text characters after whitespace?
For example:
<td> 4.9 ft</td>
Is it possible to remove the "ft" from the result?
Thank you.
Using Jsoup is it possible to remove text characters after whitespace?
For example:
<td> 4.9 ft</td>
Is it possible to remove the "ft" from the result?
Thank you.
Jsoup 不会帮助你。但是,您可以将元素解析为字符串,然后用另一个字符串替换部分字符串。下面是一个例子:
String parsedstring = YourElement.text();
String replacedstring = parsedstring.replace(" ft","");
这是另一个可能对您有所帮助的问题:Android - 如何用另一个字符串替换部分字符串?
尝试这个:
1) 将文本另存为字符串。2)获取String的长度,然后用substring方法去掉最后两个字符。
这是一个例子
String result = Element.text();
int resultLength = result.length();
result = result.substring(0, resultLength -2);
请注意:这是初学者的建议。