I am trying to write a String validation to match any character (regular, digit and special) except =.
Here is what I have written -
String patt
If your goal is to not have any = characters in your string, please try the following
String patternString = "[^=]*";