Regular Expressions 101

Sponsors

Library entries

1
javascript

url regex

no description available
Submitted by anonymous - 7 years ago
1
javascript

c

no description available
Submitted by s - 7 years ago
2
python

parse tag data with multiline

parse tag data with multiline
Submitted by Ali GÖREN - 7 years ago
0
python

my regex for multiline

multiline input with tagged
Submitted by Ali GÖREN - 7 years ago
1
javascript

nxtgn title grabber

no description available
Submitted by anonymous - 7 years ago
1
javascript

nxtgn categories

no description available
Submitted by anonymous - 7 years ago
1
javascript

re

no description available
Submitted by anonymous - 7 years ago
-1
python

شش

no description available
Submitted by anonymous - 7 years ago
1
javascript

Regex SCript replace

no description available
Submitted by MGO - 7 years ago
1
python

miri

no description available
Submitted by anonymous - 7 years ago
10
python

entity

no description available
Submitted by anonymous - 7 years ago
0
javascript

CEP

no description available
Submitted by anonymous - 7 years ago
1
python

ghs LS Summary extractor

no description available
Submitted by anonymous - 7 years ago
0
python

Finding SEI File Date in File Name

For flags data
Submitted by Andrew Chalk - 7 years ago

Between two strings

Vote

-2

Regular Expression
python

"
# Keys are pretty much "any text before the '=' symbol" (?P<key>[^=]+) # Match the '=' symbol = (?P<value> # Lazy match .*? # Look-ahead (don't move the "regex cursor", just "peek forward") (?= # Match a '_' that has no other '_' between it and the '=' character, or... _(?=[^_=\n]+=) | # ... or the end of the line $ ) ) # Actually "consume" the '_' character if it exists (or just match the end-of-line) (?:_|$)
"
gmx

Description

Loading markdown...
Submitted by OnlineCop - 7 years ago