What regex would match any ASCII character in java?
I\'ve already tried:
^[\\\\p{ASCII}]*$
but found that it didn\'t match lots of
For JavaScript it'll be /^[\x00-\x7F]*$/.test('blah')
/^[\x00-\x7F]*$/.test('blah')