Hi,
How do I get "7515-36283" between "Result:" and "/ Value" from following text:
Result: 75153-6283 / Value
"Result: 75153-6283 / Value" occurs multiple times with different numeric value and might have special character.
I've tried:
... | rex field=_raw "Result: (?P[^\s]+) / Value" | table Order
It works but does not show all values in a single field. It only shows the first occurrence of the "Order"
↧