Forum Discussion
rajeshchawla
Helper I
8 years agoHow to remove all characters except alpha numeric in text column
The column is populated with data that contains quite a few Unicode characters. The rows of interest to me are the ones where the characters are only in the range of a-z (upper or lower case) or 0-9....
- 8 years ago
Here is one way of doing it. The below code filters rows to only those where Text is equal to just the alphanumeric characters from Text.
This assumes the last step of the query is PreviousStep and the column of interest is named Text.
= Table.SelectRows( PreviousStep, each [Text] = Text.Select([Text],{"a".."z","A".."Z","0".."9"} ) )Regards,
Owen
Anonymous
8 years agoNot applicable
Could you provide more information regarding your requirement? Do you want identify if the column contains any invalid character, such as !@#?
- rajeshchawla8 years ago
Helper I
Added more detail to original question.