Hello I want to write a regex the checks if the string contains the following characters ' " | \ / &...
z
Hello I want to write a regex the checks if the string contains the following characters ' " | \ / <>:
Copy code
"Team's<>".contains("/[\"'\\/\\\\<>;|]/;")
n
Regex("""['"|\/<>]""").containsMatchIn("Team's<>")