Hi there,
I have extract the content after "_". For example:
Before:
2022_NZ_ABC
2022_NZ_DEF
2022_NZ_GHI
After:
ABC
DEF
GHI
How can I achieve this using RegEx?
Thanks,
Yiling
Solved! Go to Solution.
It worked! Many thanks
Sorry one complication: when my input looks like this 2022_NZ_JK-LMN, I was expecting output "JK-LMN", but the above RegEx would return null. How can we handle inputs with hyphen?
THanks,
Yiling