You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear Jeff can you also make available op.test(str, regexp) to test if a particular string contains a particular regexp? (similar to the string method in js) thanks
The text was updated successfully, but these errors were encountered:
You can use op.match(value, regexp) for this purpose. If needed, you can coerce the result to a boolean (match or no match) using !!op.match(value, regexp). Or is there a reason that match doesn't work for you?
Dear Jeff can you also make available op.test(str, regexp) to test if a particular string contains a particular regexp? (similar to the string method in js) thanks
The text was updated successfully, but these errors were encountered: