I need to retain only lowercase text and underscore in a string and replace everything else with space(" ").
say input: text List ? this_word.
required output: text ist this_word
I am trying the regex expression ^[a-z_]
but this doesn't seem to work