I have a list of numbers and I want to check if a non visible character has sneaked such as a space, tab or anything else. What would be the most safe way to check non visible characters in the data? Now my list contains numbers but it could be any printed/visible character.
I tried to search for ^(\d) but it seems to find the first digit of each number which is not what expected. Also, anything similar would work only for number lists and not for any type of printable/visible data.