10/09/2018 Online regex tester and debugger: PHP, PCRE, Python, Golang and JavaScript
regex101 @regex101 donate contact bug reports & feedback wiki
REGULAR
SAVE
EXPRESSION
& SHARE 1 match, 15 steps (~2ms)
EXPLANATION
save regex ctrl+s
/ AppName\=(?<AppName>[\d\w]+) / gm / AppName\=(?<AppNam / gm
e>[\d\w]+)
FLAVOR
TEST STRING SWITCH TO UNIT TESTS AppName matches the
pcre (php) characters AppName literally
AppName=PDVendCommons|OS=5.1.1|Api=22|Device= (case sensitive)
javascript
LANDI|Mode \= matches the character =
python literally (case sensitive)
Named Capture Group App
golang Name
(?<AppName>[\d\w]+)
TOOLS Match a single characte
r present in the list belo
code generator
w
regex debugger [\d\w]+
+ Quanti er — Matches
MATCH INFORMATION
Match 1
Full match 0-21 `AppName=
PDVendCom
mons`
Group `AppName` 8-21 `PDVendCo
mmons`
QUICK REFERENCE
Search reference
all tokens
common tokens
general tokens
anchors
meta sequences
quanti ers
A single character of: a, b … [abc]
A character except: a, b … [^abc]
SUBSTITUTION A character in the range: … [a-z]
[Link] 1/1