tags:

views:

112

answers:

2
+3  A: 

You need to escape the ^ with a \, i.e. s/\^A/^B/. ^ denotes "start of line" in a regular expression. In the replacement text, escaping is not necessary, but possible.

Martin v. Löwis
+7  A: 

To get the ^A character, press CTRL-V CTRL-A

If you have configured the "paste" action with CTRL-V (generally on Windows) you can use CTRL-Q instead of it.

CMS