in reply to Re: Parsing with Regular Expressions
in thread Parsing with Regular Expressions
Or better yet, use ([^,]+) (see Death to Dot Star!).
m/REFDATA_ERROR\[ type=([^,]+), system=([^,]+), category=([^,]+), code=([^\]]+) \]/x; # The /x added for readability
|
|---|