EscapeRegex / String Layer
Escape special regex metacharacters in strings to create literal pattern matches. Similar to Python's re.escape(), Rust's regex::escape(), or R's quotemeta(). Ensures strings can be safely used as literal patterns in regex operations.
Escapes the following characters:
- . ^ 19.99 → $19.99
Table
0
0
Table
Select
columnThe string column to escape. Common input types:
- File paths (C:\folder\file.txt)
- URLs (http://example.com/path?q=1)
- Product codes (A-123.45+)
- Version numbers (2.0.1-beta)
- Mathematical expressions (x+y*z)
- File patterns (*.txt)
AsColumn
nameName for the new column. If not provided, the system generates a unique name. If AsColumn
matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.