Does anyone know if it is possible in an expression to check if a string contains a substring rather than a direct match?
Thanks!
Does anyone know if it is possible in an expression to check if a string contains a substring rather than a direct match?
Thanks!
I think includes("something")
will work.
That worked. Thank you sir!!