Simply enter the RegEx and the String to match against! Don't bookend the regex in /slashes/. Supported features: cAsE sEnSiTiVe [BROKEN IN SCRATCH 3.0] [aA-M] matches a, or any character between A and M [^abcd] matches everything but a, b, c, or d . matches any character \d for a digit (\D for everything else) \w for alphanumeric and _ (\W for everything else) \s for whitespace (just space and tab) (\S for everything else) \t for tab (\T for everything else) a slash before any other character escapes it () to group elements * to repeat the previous token 0 or more times + to repeat the previous token 1 or more times ? to repeat the previous token 0 or 1 times ^ at the beginning to match from the start of the string $ at the end to match to the end of the string
i fixed it :D original project owner is @NickyNouse i might add other stuff too who knows