Java正規表現。
//...
Pattern p = Pattern.compile("(\\d).*(\\d)");
String input = "6 example input 4";
Matcher m = p.matcher(input);
if (m.find()) {
//Now I want replace group one ( (\\d) ) with number
//and group two (too (\\d) ) with 1, but I don't know how.
}
replaceFirst(...)
でキャプチャされたサブシーケンスを参照するには、$n
(nは数字)を使用します。最初のグループをリテラル文字列 "number"で置き換え、2番目のグループを最初のグループの値で置き換えたいと思います。
Pattern p = Pattern.compile("(\\d)(.*)(\\d)");
String input = "6 example input 4";
Matcher m = p.matcher(input);
if (m.find()) {
// replace first number with "number" and second number with the first
String output = m.replaceFirst("number $3$1"); // number 46
}
(\D+)
の代わりに、2番目のグループに(.*)
を考慮してください。 *
は貪欲なマッチャーであり、最初は最後の数字を消費します。マッチャーは、最後の(\d)
に一致するものがないと認識した場合、最後の桁に一致する前にバックトラックする必要があります。
Matcher#start(group)
および Matcher#end(group)
を使用して、一般的な置換メソッドを作成できます。
public static String replaceGroup(String regex, String source, int groupToReplace, String replacement) {
return replaceGroup(regex, source, groupToReplace, 1, replacement);
}
public static String replaceGroup(String regex, String source, int groupToReplace, int groupOccurrence, String replacement) {
Matcher m = Pattern.compile(regex).matcher(source);
for (int i = 0; i < groupOccurrence; i++)
if (!m.find()) return source; // pattern not met, may also throw an exception here
return new StringBuilder(source).replace(m.start(groupToReplace), m.end(groupToReplace), replacement).toString();
}
public static void main(String[] args) {
// replace with "%" what was matched by group 1
// input: aaa123ccc
// output: %123ccc
System.out.println(replaceGroup("([a-z]+)([0-9]+)([a-z]+)", "aaa123ccc", 1, "%"));
// replace with "!!!" what was matched the 4th time by the group 2
// input: a1b2c3d4e5
// output: a1b2c3d!!!e5
System.out.println(replaceGroup("([a-z])(\\d)", "a1b2c3d4e5", 2, 4, "!!!"));
}
チェックここでオンラインデモ.
死んだ馬を倒してすみませんが、誰もこれを指摘していないのはちょっと変です-「はい、できますが、これは現実のグループをキャプチャする方法の反対です」。
Regexを本来の使用方法で使用する場合、ソリューションは次のように簡単です。
"6 example input 4".replaceAll("(?:\\d)(.*)(?:\\d)", "number$11");
または、以下のshmoselが正しく指摘したように、
"6 example input 4".replaceAll("\d(.*)\d", "number$11");
...正規表現では、小数をグループ化する正当な理由がないためです。
通常、captureingグループを使用することはありませんdiscard、使用する文字列の部分でそれらを使用しますkeep。
本当に置き換えたいグループが必要な場合は、代わりにおそらくテンプレートエンジン(たとえばmoustache、ejs、StringTemplateなど)が必要です。
好奇心をそそるのは別として、正規表現エンジンが可変テキストを認識してスキップする必要がある場合に備えて、正規表現の非キャプチャグループですらあります。たとえば、
(?:abc)*(capture me)(?:bcd)*
入力が「abcabc capture me bcdbcd」または「abc capture me bcd」、あるいは「capture me」のように見える場合に必要です。
逆に言えば、テキストが常に同じで、キャプチャしない場合、グループを使用する理由はまったくありません。
_.*
_の周りに括弧を追加して3番目のグループを追加し、サブシーケンスを"number" + m.group(2) + "1"
に置き換えます。例えば。:
_String output = m.replaceFirst("number" + m.group(2) + "1");
_
Matcher.start()およびmatcher.end()メソッドを使用して、グループの位置を取得できます。したがって、この位置を使用すると、テキストを簡単に置き換えることができます。
入力のパスワードフィールドを置き換えます。
{"_csrf":["9d90c85f-ac73-4b15-ad08-ebaa3fa4a005"],"originPassword":["uaas"],"newPassword":["uaas"],"confirmPassword":["uaas"]}
private static final Pattern PATTERN = Pattern.compile(".*?password.*?\":\\[\"(.*?)\"\\](,\"|}$)", Pattern.CASE_INSENSITIVE);
private static String replacePassword(String input, String replacement) {
Matcher m = PATTERN.matcher(input);
StringBuffer sb = new StringBuffer();
while (m.find()) {
Matcher m2 = PATTERN.matcher(m.group(0));
if (m2.find()) {
StringBuilder stringBuilder = new StringBuilder(m2.group(0));
String result = stringBuilder.replace(m2.start(1), m2.end(1), replacement).toString();
m.appendReplacement(sb, result);
}
}
m.appendTail(sb);
return sb.toString();
}
@Test
public void test1() {
String input = "{\"_csrf\":[\"9d90c85f-ac73-4b15-ad08-ebaa3fa4a005\"],\"originPassword\":[\"123\"],\"newPassword\":[\"456\"],\"confirmPassword\":[\"456\"]}";
String expected = "{\"_csrf\":[\"9d90c85f-ac73-4b15-ad08-ebaa3fa4a005\"],\"originPassword\":[\"**\"],\"newPassword\":[\"**\"],\"confirmPassword\":[\"**\"]}";
Assert.assertEquals(expected, replacePassword(input, "**"));
}
これは別の解決策で、複数の一致で単一のグループを置き換えることもできます。スタックを使用して実行順序を逆にするため、文字列操作を安全に実行できます。
private static void demo () {
final String sourceString = "hello world!";
final String regex = "(hello) (world)(!)";
final Pattern pattern = Pattern.compile(regex);
String result = replaceTextOfMatchGroup(sourceString, pattern, 2, world -> world.toUpperCase());
System.out.println(result); // output: hello WORLD!
}
public static String replaceTextOfMatchGroup(String sourceString, Pattern pattern, int groupToReplace, Function<String,String> replaceStrategy) {
Stack<Integer> startPositions = new Stack<>();
Stack<Integer> endPositions = new Stack<>();
Matcher matcher = pattern.matcher(sourceString);
while (matcher.find()) {
startPositions.Push(matcher.start(groupToReplace));
endPositions.Push(matcher.end(groupToReplace));
}
StringBuilder sb = new StringBuilder(sourceString);
while (! startPositions.isEmpty()) {
int start = startPositions.pop();
int end = endPositions.pop();
if (start >= 0 && end >= 0) {
sb.replace(start, end, replaceStrategy.apply(sourceString.substring(start, end)));
}
}
return sb.toString();
}