escapeRegExp
Escapes special characters in a string to safely use it within a regular expression.
Import:
import { escapeRegExp } from 'obsidian-dev-utils/reg-exp';Signature:
function escapeRegExp($string: string): stringParameters:
| Parameter | Type | Description |
|---|---|---|
$string | string |
Returns: string — The escaped string with special characters prefixed with a backslash.