A regular expression to check if is a valid folder name (no forbidden characters included).
/^[^\\\/\?\*\"\'\>\<\:\|]*$/
Matches:
- regex
- regexpattern
Non-matches:
- /\regex
See Also:
Rate This Regex
User Review
( votes)Expression Flags
Flags | Description |
---|---|
i |
Ignore case sensitive. |
g |
Allows global search. |
m |
Allows multiline search. |