A regular expression to match hashtags (#) used in social media platforms.
/^#[^ [email protected]#$%^&*(),.?":{}|<>]*$/
Matches:
- #regex_pattern
- #regex-pattern
Non-matches:
- @regex/pattern
- regexpattern
- regexpattern#
See Also:
Rate This Regex
User Review
( votes)Expression Flags
Flags | Description |
---|---|
i |
Ignore case sensitive. |
g |
Allows global search. |
m |
Allows multiline search. |