Regular Expressions 101

Community Library

Your search did not match anything

Community Library Entry

1

Regular ExpressionOpen Workspace

/
[\.\?\!]\s*[a-z]
/

Description
Created·2016-08-31 12:53
Type·Match
Flavor·JavaScript

  1. First rememeber to escape .?! with a \
  2. Square brackets mean "any of the characters inside us"
  3. \s* mean "0 or more spaces after the previous characters"
  4. [a-z] mean "any character in the set from a to z that is in lowercase"
Submitted by Giuseppe Tavella
Open Workspace