For the complete documentation index, see llms.txt. This page is also available as Markdown.

regex.replace()

regex.replace(haystack, pattern, replacement) replaces the first occurrence of a regex pattern in a string with a replacement string.

Returns

  • if haystack and replacement are strings and pattern matches, returns a new string with the first match replaced by replacement.

  • otherwise, returns null.

Examples

// remove leading whitespace
regex.replace(text, /^\s+/, "")

Last updated

Was this helpful?