How can I find/replace these characters?
:
}
,
^
*
(
_
]
\
{
'
)
+
{
;
|
"
<
?
>
.
/
~
Special characters
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
ben_josephs
- Posts: 2464
- Joined: Sun Mar 02, 2003 9:22 pm
Do you mean when searching with regular expressions?
These characters are not special in regular expressions and can be used literally:
These characters are special in regular expressions and (in most cases) must be quoted, either by prefixing them with a backslash (\) or by turning them into a character class by enclosing them in square brackets ([..]).:
These characters are special in regular expressions and must be quoted by prefixing them with a backslash (\) whether or not they are in a character class:
These characters are not special in regular expressions and can be used literally:
Code: Select all
:
,
_
'
;
"
<
>
/
~
Code: Select all
$
?
*
+
(
)
[
]
{
}
|
.
Code: Select all
^
\