Regex To Match Anything After The First Space In A String

A regular expression to match anything after the first space in a string. Can be useful in replacing all characters that follow the first space.

/\s(.*)/g

Matches:

  • Regex Pattern
  • Regex Pattern Com
  • Regex Pattern.Com!

See Also:

Regex Is Copied!