I'm trying to match user input with wildcards that are simpler than the java regex syntax. Say there's a wildcard A. The user would then enter the input string:
this ( is \ a $ test.
and match 'test' with the search string:
this ( is \ a $ %A%.
I do this by replacing the wildcard string in the search string with (.+?), so I can match the wildcard with the capturing groups of a normal regex. However, I still want the special characters to be escaped. If I use quote, the regex will no longer work, since the characters with regex meaning ((.+?)) are also quoted:
String inputString = "this ( is \\ a $ test."
String searchString = "this ( is \\ a $ %A%."
String regex = Pattern.quote(searchString);
//regex = "\\Qthis ( is \\ a $ %A%.\\E"
regex = regex.replaceFirst("%A%", "(.+?)");
//regex = "\\Qthis ( is \\ a $ (.+?).\\E"
Matcher matcher = Pattern.compile(regex).matcher(inputString); //no match
Is there a built-in way to really escape special characters, not quote the entire string?