<@U3N7BKJ79> you could probably do it with `REGEXP...
# suitescript
m
@neerajrtiwari you could probably do it with
REGEXP_REPLACE
👍🏼 1
n
Thanks, I was thinking if REGEXP_SUBSTR will do the trick or not.
I will try this.
@michoel I looked at answer id: 31804. I guess REGEXP_REPLACE won't work for us as I am not trying to replace keyword with something else. But rather - I am trying to display the unique value (for each row) that follow the keyword.
the field I am evaluating is {message}
m
You can use capture groups so you match the whole field and replace it with what you want to extract. E.g
^.+Customer Name:(.+)$
, replace with
\1
👍🏼 1
n
This helped us. Thank you!