Hey Devs, i’m 100% sure this is possible, how can i get the part behind the vertical bar using string.match?

Hey Devs, i’m 100% sure this is possible, how can i get the part behind the vertical bar using string.match?

This should be in #help-and-feedback:scripting-support
But string.split(str, " | ")[1] would get everything before the vertical bar.
I want to use string.match though how can i do that?
You could use string.match(str, ".* |"), but it will include the vertical bar in the output…