2番目の質問の場合:-
2番目の要件の解決策は次のとおりです。-
String str = "2 4.0 6.0 7.5 8 4.60";
str = str.replaceAll("(?<=^|[ ])(\\d+)(?=$|[ ])", "$1.0");
System.out.println(str); // Prints 2.0 4.0 6.0 7.5 8.0 4.60
最初の質問の場合:-
この正規表現を使用できます:-
(?<=^|[ ])(\\d+)(?=$|[ ])
digits
これは、前後の。の任意のシーケンスに一致しspace
ます。^
また、とを使用して、文字列の最後の数字と一致します$
。
実装は次のとおりです:-
String str = "2 4.0 6.0 7 8 4.60";
Pattern pattern = Pattern.compile("(?<=^|[ ])(\\d+)(?=[$ ])");
Matcher matcher = pattern.matcher(str);
while (matcher.find()) {
System.out.print(matcher.group(1) + " ");
}
出力:-
2 7 8