Regcode Docs Regcode Docs
  • getting started

    • Introduction
    • Syntax
    • Installation
    • Examples
  • logic

    • Or
    • Quantifers
  • values

    • [any]
    • [character]
    • [end]
    • [newline]
    • [notCharacter]
    • [notNumber]
    • [notWhitespace]
    • [number]
    • [special]
    • [start]
    • [tab]
    • [whitespace]
  • methods

    • normal()
    • exact()
    • regex()
    • oneOf()
    • notOneOf()
    • hasAfter()
    • notAfter()
    • hasBefore()
    • notBefore()
    • word()
  • flags

    • <dotAll>
    • <ignoreCase>
    • <matchAll>
    • <multiline>
    • <unicode>
  • More

[notWhitespace]

notWhitespace will match anything but a whitespace. The opposite of the whitespace value.

Usage

[notWhitespace]

Regex

\S
Edit this page on GitHub
[notNumber] [number]

On this page

  • Usage
  • Regex