Page 1 of 1

Can't replace spaces for TAB

Posted: Mon Dec 09, 2002 3:13 am
by Troy Gustasfon
I've tried converting spacces to tabs with the replace function AND with regular expressions turned on. However, instead of replacing /t with the tab character it just uses the literal "/t". What gives? I'm sure that Use Regular expressions is on and working because it is finding via the regex's fine, but just not replacing.

thanx.
-troy

Re: Can't replace spaces for TAB

Posted: Mon Dec 09, 2002 6:26 am
by Berend Hasselman
You use \t in a replacement expression.

Berend