我在玩UVa #494,我设法用下面的代码解决了它:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class Main {
public static void main(String[] args) throws IOException{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String line;
while((line = in.readLine()) != null){
String words[] = line.split("[^a-zA-z]+");
int cnt = words.length;
// for some reason it is counting two words for 234234ddfdfd and words[0] is empty
if(cnt != 0 && words[0].isEmpty()) cnt--; // ugly fix, if has words and the first is empty, reduce one word
System.out.println(cnt);
}
System.exit(0);
}
}
我构建了正则表达式"[^a-zA-z]+"
来拆分单词,例如字符串abc..abc
或abc432abc
应该拆分为["abc", "abc"]
. 但是,当我尝试使用 string 时432abc
,结果是["", "abc"]
- 第一个元素 fromwords[]
只是一个空字符串,但我希望只有["abc"]
. 我不明白为什么这个正则表达式给了我""
这个案例的第一个元素。