1

我有一个单词列表,在标记化之后,我的列表中有一些我实际上不想要的空格。建议请...

示例字符串

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,
4

1 回答 1

1

只需在+您的表达式中添加一个,不要在两个标记之间拆分。您还可以稍微简化您的表达式,您不必转义字符类中的所有这些字符:

String[] splitString = (EXAMPLE_TEST.split("[\\[\\],'\" (){}*.]+"));
于 2012-11-01T08:11:06.627 回答