regex for discord username
matches a discord username along with ending tag
^.{3,32}#[0-9]{4}$
Regex Flags
global match
?
ignore case
?
multiline
?
dotAll
?
unicode
?
sticky
?
Disコルド#0001
KiBender#1234
SkankHunt42#2134
Username identifier for the VOIP application Discord
The service Discord allows to have a 4 digit tag along with a user name.
Cheatsheet
expr | usage |
---|---|
/\w/ | matches any word character (a-z, A-Z, 0-9, _) |
/[0-9]/ | matches all digits |
/(hello){1,3}/ | matches "hello" that occur between 1 and 3 times (inclusive) |
/^/ | matches beginning of a line |
/$/ | matches end of a line |
iHateRegex
by
geon