in reply to Re: How do I extract named variable names from regex string
in thread How do I extract named variable names from regex string
use 5.010; "" =~ /(?<mon>\w+)\s(?<mon>\w+)/; print scalar keys %-; # 0
Now constructing such a string is in general even more difficult than just parsing for named captures labels.
Good idea anyway! :)
Cheers Rolf
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How do I extract named variable names from regex string
by JavaFan (Canon) on Jan 31, 2012 at 02:33 UTC | |
by LanX (Saint) on Jan 31, 2012 at 03:47 UTC |