I have a list of records that include letters, numbers, spaces, _, -, . ,etc.
Is there a way to flag any records that include non ASCII Characters?
Solved! Go to Solution.
letters, numbers, spaces, _, -, . , are ascii .
Can you include sample data with different flags ? Regex tool can be used to identify different characters.
You can test regular expression here : https://regexr.com/
Thank you!