I have a string like following:
CREATE GLOBAL TEMPORARY TABLE some_temp_table_name
OR
CREATE GLOBAL TEMPORARY TABLE some_temp_table_name something else
with the regex I want to strip out whatever is in bold letters.
I have the following regex
([a-z].*[\s]*)
what should I change in the regex?