I have these strings, and I'm looking to extract all characters after the first _
. For example:
'hello _I _ am _ 123312'
'Nobody sa_dwdq casc_as _ 1233_12'
'_dosjadojs aod jao jdaso j'
The output expected:
' I _ am _ 123312'
'dwdq casc_as _ 1233_12'
'dosjadojs aod jao jdaso j'
This is the closest answer I found, but it's not in BigquerySQL language.
And this is what I have got so far, but it includes the matched character and I haven't found a way to not include the matched character through regex:
REGEXP_EXTRACT(str, r'_.*')