Hello I want to write a regex the checks if the st...
# getting-started
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<>")