以下是輸入格式字符串分割到數組中的格式如下
str = "New 25 \nMy Val 50 \nOld 25 ";
String[] words = str.trim().split("\\s+");
for(int i = 0; i <words.length; i++) {
System.out.println(words[i]);
}
輸出:
New
25
My
Val
50
Old
25
但我的期望是:
New
25
My Val
50
Old
25
我如何能實現這在java中使用正則表達式
你的輸出/所需的輸出不匹配您提供的輸入。 –
抱歉給您帶來不便。輸入是「我的Val 25 \ nNew 50 \ nOld 25」 –
@KarthikSankar用適當的輸入編輯你的問題。 – Antoniossss