I was wondering if there was a regex availabe that can match a string and search for a "=" in the string.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, but why? I simple string search for "=" is usually what you want (see String.IndexOf). Doing a search for "=" using a regex means just using "=" as the regex, nothing special. If you want to match rather than search you can use the regex Is this what you wanted or am I missing something? |
|||||
|
|
/[=]+/ That will match if there is an = character one or more times anywhere in the string. |
|||||||||||
|