我有一个单词列表,在标记化之后,我在列表中得到了一些我实际上不想要的空格。请给我建议。
示例字符串
String str = "3) type an \"l\" in the search field (\"bl\")"+
"4) startHistorySearch()'s previous result contains [\"blah\", \"baaa\", \"bloop\", \"bzzz\"], Satchel filters this down to [\"blah\", \"bloop\"] to match the new \"bl\" search string"+
and so on.....以下是代码和输出片段
String[] splitString = (EXAMPLE_TEST.split("[\\[\\],\\'\" \\(\\)\\{\\}\\*\\.]"));输出
nsIAutoCompletResult, , no, , Simple, , , , so, the, QI, fails, , historyResult在某些地方我看到了这样的..。
finds, 1, entry, , , blah, , , , search-suggestions, finds, , baaa, , , , bloop, , , , bzzz, , , the, autocompete, menu, shows, these, in, order, with, a, divider, between, , blah, , and, , baaa, , 3, , type, , l, , in, the, search, field, , , bl, , 4, , startHistorySearch, , , s, previous, result, contains, , , blah, , , , baaa, , , , bloop, , , , bzzz, , , , Satchel, filters, this, down, to, , , blah, , , , bloop, , , to, match, the, new, , bl, , search, string5, , nsSearchSuggestions, s, onReadyState, , , change, is, called, with, updated, search,发布于 2012-11-01 16:11:07
只需在表达式中添加一个+,以避免在两个标记之间拆分。您还可以稍微简化您的表达式,您不必转义字符类中的所有这些字符:
String[] splitString = (EXAMPLE_TEST.split("[\\[\\],'\" (){}*.]+"));https://stackoverflow.com/questions/13173134
复制相似问题