What's the correct regex for a plus character (+) as the first argument (i.e. the string to replace) to Java's replaceAll method in the String class? I can't get the syntax right.
|
|
|
You need to escape the However, Java uses a String parameter to construct regular expressions, which uses
|
|||||||
|
|
when in doubt, let java do the work for you:
|
|||||||||
|
|
You'll need to escape the + with a \ and because \ is itself a special character in Java strings you'll need to escape it with another \. So your regex string will be defined as "\\+" in Java code. I.e. this example:
|
|||
|
|
|
If you want a simple string find-and-replace (i.e. you don't need regex), it may be simpler to use the StringUtils from Apache Commons, which would allow you to write:
|
|||||||
|
|
Others have already stated the correct method of:
Another method that you can use is to put the So you can also do:
|
|||
|
|
OR
|
||||
|
|
