finevine
Follow
Pinned Loading
-
-
-
-
A regex cheatsheet 👩🏻💻 (by Catherine)
A regex cheatsheet 👩🏻💻 (by Catherine) 1let regex;
23/* matching a specific string */
4regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello"
5regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO"
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.