Search helper
A developer needs to search literally for `price.*(usd)` without letting the regex treat the punctuation as operators.
Inputs
- Input text: price.*(usd)
Steps
- Escape regex metacharacters
- Copy the safe literal pattern
Result
- The output is ready for exact text matching inside a regex.