I have a txt file and each line has a set of random strings, I need to select only the lines that contains only the characters: 1234567890qwertyuiopasdfghjklzxcvbnm-._~
I'm reading line by line and verifying char by char, I don't think it's the best way to do that, and I think a RegEx would be perfect.
So can anybody help with with a pattern for this?
thanks!