Hi, It looks like chr(27) the code which creates it is the following: printf "\33[1mSOME TEXT\33[0m"
On Sun, Jun 27, 2010 at 12:18 PM, Gabor Szabo <[email protected]> wrote: > I guess it is a chr(27) at the beginning, right? > Gabor > > On Sun, Jun 27, 2010 at 12:08 PM, Erez David <[email protected]> wrote: > > s/\e[\[01]m//g does't do the job. since the first [ is not a real > character > > it is a meta character... > > > > On Sun, Jun 27, 2010 at 12:02 PM, Shlomi Fish <[email protected]> > wrote: > >> > >> On Sunday 27 Jun 2010 11:27:02 Erez David wrote: > >> > Hi, > >> > > >> > I am reading a file which has some meta characters in it. > >> > This meta characters are: ^[[1m and ^[[0m which are used to bold some > >> > text > >> > out. > >> > > >> > I am looking for the best way to remove this meta characters from the > >> > file > >> > before I parse it. (Whether remove it by regex or any other way...) > >> > > >> > >> You can use a regex. Untested: > >> > >> s/\e[\[01]m//g > >> > >> Regards, > >> > >> Shlomi Fish > >> > >> > Thanks > >> > > >> > Erez > _______________________________________________ > Perl mailing list > [email protected] > http://mail.perl.org.il/mailman/listinfo/perl >
_______________________________________________ Perl mailing list [email protected] http://mail.perl.org.il/mailman/listinfo/perl
