I have a string something like "***-***" I just want to check if the string contains "-"?What is the best way to achieve that?
Discussion posts and replies are publicly visible
There are many possible ways to do it, but you can try this
or(find("-","***-***" ))
I used find I think I was sending parameters incorrectly thanks for sharing this.