我有一個字符串,說賓果遊戲,我想打破它更小的部分,讓他們每個人一個String數組,例如:
字符串分割到小零件[JAVA]
String s = "BINGO"
我希望它這樣是這樣;
String s[] = new String[s.length];
s[0] = B;
s[1] = I;
s[2] = N;
s[3] = G;
s[4] = O;
我試過這個,但是失敗了;
public static void main(String[] args) {
String sentence = "BINGO";
String words[] = sentence.split("a-zA-Z");
for (String word : words) {
System.out.println(word);
}
它只是打印出「BINGO」,而我想分裂他們,現在正則表達式我應該用什麼呢?
什麼是'小parts'的陣列?一個字符? – turbanoff