Is there a way in Java, when you use a RegEx look-behind to look for more than 1 character behind? I have this:
return str.replaceAll(".(?<!" + word + ")", "+");
With what I can replace the "?" in the RegEx to get the lookbehind for more than 1 char? Say 2 or 3 chars.