Skip to content
Advertisement

String.split() at a meta character +

I’m making a simple program that will deal with equations from a String input of the equation When I run it, however, I get an exception because of trying to replace the ” +” with a ” +” so i can split the string at the spaces. How should I go about using

the string replaceAll method to replace these special characters? Below is my code

Exception in thread “main” java.util.regex.PatternSyntaxException: Dangling meta character ‘+’ near index 0 + ^

JavaScript

Advertisement

Answer

replaceAll accepts a regular expression as its first argument.

+ is a special character which denotes a quantifier meaning one or more occurrences. Therefore it should be escaped to specify the literal character +:

JavaScript

(Strings are immutable so it is necessary to assign the variable to the result of replaceAll);

An alternative to this is to use a character class which removes the metacharacter status:

JavaScript

The simplest solution though would be to use the replace method which uses non-regex String literals:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement