I'm reading some code that involves regular expression and having some trouble.
Can someone please explain it and give an example of text it would parse?
if(/\|\s*STUFF(\d+)\s*\|\s*STUFF(\d+)/)
{
$a = $1;
$b = $2;
}
|
|
|
One string it matches against is
|
||||
|
|
then repeat once, and save the next digit sequence in If the regex matches, we know that In that case, we assign As no explicit string to match against is provided, the Example text:
and
|
||||
|
|