I'm looking for a regex pattern to match all characters that are found on a U.S. keyboard. right now, I match only on letters and numbers and white space, so it looks like
^[a-zA-Z0-9\\s]+$
But now I need it to match on any character found on a keyboard. I even want it to match if the string is empty as well.