I'm studying regex and I think this should work, but alteryx is telling me the match is 'False'. I'm trying to match any rows that contains non alpha, non digit, non ".", non "%", non "/"- in other words- these are ok but want to remove all else (I'll do the parse function after I can find and validate through match).
[^A-Za-z0-9\.\%\/*]
Shouldn't this work? Thanks ahead of time.