Hi. Question: is there a way to add the classic /g option for RegEX in INLINE RegEX extractor for Splunk (props), without using command rex or other tranformations? Example, SerialNumber=12345,SerialNumber=67890 With a classical regex, "/SerialNumber=(?P<sn>\d+)/g" i can found "12345" & "67890". Same with an SPL "rex max-match=0 "SerialNumber=(?P<sn>\d+)". But how to do it in INLINE extraction? I got rid of the "problem" using extraction of "sn1" & "sn2" fields and transforming them with an eval transformation ("sn = sn1.' , '.sn2") and it works fine. But if, tomorrow, i'll find something like SerialNumber=12345,SerialNumber=67890,SerialNumber=09876,SerialNumber=54321 Without the rex i would be in trouble! Thanks.
... View more