Hi,
I am looking to filter out items not matching the requirements. I'm looking to keep items containing letters, numbers and special characters, it can be different combinations and I am struggling to get on regex code to match them all (or a simpler way to do it). If any help, each item will always be 3 characters or more.
Example what to keep/filter out:
abc123 (Letters and Numbers in any order = KEEP)
123456 (All numbers = KEEP)
abc-123 (Letters, special character, number in any order, length and any special character = KEEP)
abcdef (All Letters = OUT)
abc-efd (All letters and special characters in any order = OUT)
Hope this makes sense and thank you in advance