Someone know how insert a rex expression "..." in a search, using splunk framework?
search:
mvc.tokenSafe ("index=main source=$sourcename$ File:read | rex "\[[^*](?.+)\]" | fields path | outputlookup read_rules.csv")
the " "
gives me problems.
I have tried with ' '
"' "'
or ." ".
or "$ $"
I have no idea how to work around this.
have you tried escaping the inner quotes like so \"
?
Work, thank you!