回答:
(Javaが9以上であると想定できる場合、4castleの答えは以下よりも優れています)
マッチャーを作成し、それを使用して繰り返し一致を見つける必要があります。
import java.util.regex.Matcher;
import java.util.regex.Pattern;
...
List<String> allMatches = new ArrayList<String>();
Matcher m = Pattern.compile("your regular expression here")
.matcher(yourStringHere);
while (m.find()) {
allMatches.add(m.group());
}
この後allMatches
、一致が含まれallMatches.toArray(new String[0])
ます。本当に必要な場合は、を使用して配列を取得できます。
を使用MatchResult
してMatcher.toMatchResult()
、現在のグループ状態のスナップショットを返すので、一致をループするヘルパー関数を作成することもできます。
たとえば、遅延イテレータを記述して、
for (MatchResult match : allMatches(pattern, input)) {
// Use match, and maybe break without doing the work to find all possible matches.
}
このようなことをすることによって:
public static Iterable<MatchResult> allMatches(
final Pattern p, final CharSequence input) {
return new Iterable<MatchResult>() {
public Iterator<MatchResult> iterator() {
return new Iterator<MatchResult>() {
// Use a matcher internally.
final Matcher matcher = p.matcher(input);
// Keep a match around that supports any interleaving of hasNext/next calls.
MatchResult pending;
public boolean hasNext() {
// Lazily fill pending, and avoid calling find() multiple times if the
// clients call hasNext() repeatedly before sampling via next().
if (pending == null && matcher.find()) {
pending = matcher.toMatchResult();
}
return pending != null;
}
public MatchResult next() {
// Fill pending if necessary (as when clients call next() without
// checking hasNext()), throw if not possible.
if (!hasNext()) { throw new NoSuchElementException(); }
// Consume pending so next call to hasNext() does a find().
MatchResult next = pending;
pending = null;
return next;
}
/** Required to satisfy the interface, but unsupported. */
public void remove() { throw new UnsupportedOperationException(); }
};
}
};
}
これとともに、
for (MatchResult match : allMatches(Pattern.compile("[abc]"), "abracadabra")) {
System.out.println(match.group() + " at " + match.start());
}
収量
a at 0 b at 1 a at 3 c at 4 a at 5 a at 7 b at 8 a at 10
ArrayList
し、LinkedList
その結果は驚くべきことであり、。
allMatches
vs の長さの合計に基づくyourStringHere.length()
)、おそらくの適切なサイズを事前計算できますallMatches
。私の経験では、LinkedList
メモリと反復効率のコストは通常、それだけの価値LinkedList
はないため、デフォルトの姿勢ではありません。しかし、ホットスポットを最適化するときは、リストの実装を交換して、改善が見られるかどうかを確認する価値があります。
Java 9では、を使用Matcher#results()
して、Stream<MatchResult>
一致のリスト/配列を取得できるを取得できるようになりました。
import java.util.regex.Pattern;
import java.util.regex.MatchResult;
String[] matches = Pattern.compile("your regex here")
.matcher("string to search from here")
.results()
.map(MatchResult::group)
.toArray(String[]::new);
// or .collect(Collectors.toList())
Javaは正規表現を非常に複雑にし、perlスタイルに従っていません。見てみましょうMentaRegex Javaコードの一行でそれを達成する方法を参照してください。
String[] matches = match("aa11bb22", "/(\\d+)/g" ); // => ["11", "22"]
以下に簡単な例を示します。
Pattern pattern = Pattern.compile(regexPattern);
List<String> list = new ArrayList<String>();
Matcher m = pattern.matcher(input);
while (m.find()) {
list.add(m.group());
}
(より多くのキャプチャグループがある場合は、グループメソッドの引数としてそれらのインデックスで参照できます。配列が必要な場合は、を使用してくださいlist.toArray()
)
Pattern.matches()
は静的メソッドですPattern
。インスタンスで呼び出すことはできません。Pattern.matches(regex, input)
は単にの省略形ですPattern.compile(regex).matcher(input).matches()
。
Pattern pattern =
Pattern.compile(console.readLine("%nEnter your regex: "));
Matcher matcher =
pattern.matcher(console.readLine("Enter input string to search: "));
boolean found = false;
while (matcher.find()) {
console.format("I found the text \"%s\" starting at " +
"index %d and ending at index %d.%n",
matcher.group(), matcher.start(), matcher.end());
found = true;
}
find
結果group
を使用して配列/リスト/何でも挿入します。