Re: [tclwebtest] Little problem with regex substitution
Status: Abandoned
Brought to you by:
tils
From: Tilmann S. <ti...@ti...> - 2003-01-29 19:22:55
|
* Grzegorz Adam Hankiewicz <gr...@ef...> [20030129 18:26]: > I'm having a little regex problem: > > link find "so\[:alpha:\].*s" The same rules as for tcl regexps as well: try to enclose in { } to save [ ] etc. from the tcl interpreter. And in this particular case I think you need to write {so[[:alpha:]].*s}. See 'man re_syntax'. til -- http://tsinger.com |