How can I identify what characters are showing up as whitespace in a string?
The string is (There's actually a blank line before it, but it doesn't show up in StackOverflow's parser):
\n
\n
\n
When I paste it in regex101.com to try to add a regex to eliminate this spacing/characters it pastes as:
... which explains why trim()
is not seeing it as empty spaces.
How can I find out which characters are producing these bullets so I can trim them?