0% found this document useful (0 votes)
5 views1 page

Regex Tester for PHP, Python, JS, Golang

This document provides information about an online regex tester and debugger that allows testing regular expressions against strings in different flavors including PHP, PCRE, Python, Golang and JavaScript. It describes the interface for building regular expressions, selecting flavors, and viewing match results and provides a quick reference guide for regular expression syntax.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Regex Tester for PHP, Python, JS, Golang

This document provides information about an online regex tester and debugger that allows testing regular expressions against strings in different flavors including PHP, PCRE, Python, Golang and JavaScript. It describes the interface for building regular expressions, selecting flavors, and viewing match results and provides a quick reference guide for regular expression syntax.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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

You might also like