Guest User

Untitled

a guest
Jun 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Tip !
  2. Metacharacters in regular expresions are usefull and easy to use.
  3.  
  4. The following is a set of special values that denote certain common ranges. They have the advantage that also take in account the 'locale' i.e. any variant of the local language/coding system.
  5.  
  6. [:digit:] Only the digits 0 to 9
  7. [:alnum:] Any alphanumeric character 0 to 9 OR A to Z or a to z.
  8. [:alpha:] Any alpha character A to Z or a to z.
  9. [:blank:] Space and TAB characters only.
  10. [:xdigit:] .
  11. [:punct:] Punctuation symbols . , " ' ? ! ; :
  12. [:print:] Any printable character.
  13. [:space:] Any space characters.
  14. [:graph:] .
  15. [:upper:] Any alpha character A to Z.
  16. [:lower:] Any alpha character a to z.
  17. [:cntrl:] .
Add Comment
Please, Sign In to add comment