regexmatch.dev
Explore

Save & Share

Facebook
Twitter
Tumblr
E-Mail
Pinterest
LinkedIn
Reddit

sad smiley

Published on Tue Mar 01 2022

looks for a sad smiley with a backslash

omg :\ that's a bummer

Additional matching regexes for
sad smiley

sad smiley

looks for a sad smiley with a backslash

Match quoted strings, ignoring escaped quotes

Matches single or double quoted strings, and ignores backslash-escaped quotes within the string.

remove blank keys in query string

looks for blank keys in the query string and remove it, in order to make shorter request.

Liberal Email Address

Very simple & basic. More forgiving, less stringent. Allows anything which looks reasonably valid. Allows one at-symbol. Requires a two part hostname (i.e. [email protected] is not allowed)

match arguments similar to shell, supports quoted string

first group matches quoted strings second group plain text, arguments are separated with a space. example: "this is a \"string\"" thisisnot "another \"string\" with a backslash \"\\"" just replace \" with " after matching.

Valid email regexp in Go

A regexp to validate an email address according to https://html.spec.whatwg.org/#valid-e-mail-address . Note that the backslash in the name part of the regexp on that site is there to escape the forward slash, which is not needed in Go.