What regex would match any ASCII character in java?
I\'ve already tried:
^[\\\\p{ASCII}]*$
but found that it didn\'t match lots of
I have never used \\p{ASCII} but I have used ^[\\u0000-\\u007F]*$
\\p{ASCII}
^[\\u0000-\\u007F]*$