Beginner's question

R

Rui Wang

Hello,

What kind of expression shall I use if I want to refer a "(" in the
strings? For example, substitute "(" by ";".

Thanks.

Rui
 
W

Walter Roberson

:What kind of expression shall I use if I want to refer a "(" in the
:strings? For example, substitute "(" by ";".

tr/(/;/

or

s/\(/;/
 
T

Tad McClellan

Rui Wang said:
What kind of expression shall I use if I want to refer a "(" in the
strings?


"("

Parenthesis are not special in strings.

For example, substitute "(" by ";".


A regex is not a string. Parenthesis _are_ special in a regex.

You escape metacharacters with a backslash:

s/\(//
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,528
Members
45,000
Latest member
MurrayKeync

Latest Threads

Top