Consulting

Results 1 to 5 of 5

Thread: How to check if string includes any non-whitespace characters?

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    VBAX Regular
    Joined
    Mar 2021
    Posts
    8
    Location

    How to check if string includes any non-whitespace characters?

    Is there a simple way to check if a string includes non-whitespace characters? I don't need to know what the character is, just that the string includes a non-whitespace character. For example, I want to know if the string includes any characters other than:

    vbCr Chr(13) Carriage return character
    vbLf Chr(10) Linefeed character
    vbCrLf Chr(13) + Chr(10) Carriage return - linefeed combination
    vbNewLine Chr(13) + Chr(10) New line character
    vbTab Chr(9) Tab character
    vbBack Chr(8) Backspace character
    Last edited by SFRandy; 04-13-2021 at 12:26 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •