satvrnS
Reactiflux2y ago
18 replies
satvrn

✅ – satvvrn – 15-47 Jun 12

I need a little Regex help. Consider the following string:
x..y..x..z
. I want to match
x..y
and
x..z
separately.
x(.+?)z
matches
x..y..x..z
which is Not what I want. What Regex pattern would match only
x..z
?
Was this page helpful?