Android使用XML解析器修剪不需要的尾随空格?

时间:2013-12-03 05:52:01

标签: android xml-parsing whitespace xmlpullparser trim

我需要在解析android中的XML内容时修剪多余的空格?我正在使用正则表达式来删除结束标记和开始标记之间的空格 我的代码是:

topicValue.replaceAll(">\\s+<", "><").trim();

但是为了获得子主题的数字项目符号,空间不能正确删除!! 现在它看起来像这样..不是在单独的行和数字之前的空白区域。 例如:1。abcd     2. efgh 3.ijkl

建议任何想法......感谢您的帮助!!

1 个答案:

答案 0 :(得分:0)

得到了解决方案!! 代码是:

description.setText(str.replaceAll("(^ )|( $)", ""));

参考链接: Strip Leading and Trailing Spaces From Java String

感谢您的帮助!!