简体   繁体   中英

Java: Understanding the String replaceAll() method

I'm looking to figure out the answer to this problem here.

First off,

blah[abc] = blah[abc].replaceAll("(.*) (.*)", "$2, $1");

Can someone explain to me what the (.*), $2 and $1 are?

Secondly, when I nest that within a for statement in order to reverse two parts of a string, I am hit with an exception error. I was wondering if anybody knew why that is.

Thanks

Edit: This is the error I receive

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1 at ChangeNames.main(ChangeNames.java:21)

(.*) - would be a pattern to match any number of characters. Parentheses would be to mark it as a sub pattern (for back reference).

$2 & $1 - are back references. These would be things matched in your second and first sub pattern.

Basically replaceAll("(. ) (. )", "$2, $1") would find characters separated by a space, then add a comma before the space, in addition to flipping the parts. For example:

a b => b, a
Hello world => Hellw, oorld

Not sure about nesting... Can you post the code you're running?

您的正则表达式“(。)(。)”将是这种类型:“(x)(y)”这将被替换为“$ 2,$ 1。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM