I have columns like
I want only Hour Month GB/Month Gib/Hour
please help me right query in bigquery
CodePudding user response:
Try below regexp_replace(col, r'1 /?', '')
if applied to sample data in your question - output is
I have columns like
I want only Hour Month GB/Month Gib/Hour
please help me right query in bigquery
CodePudding user response:
Try below regexp_replace(col, r'1 /?', '')
if applied to sample data in your question - output is