From: lowclouds on 21 May 2010 13:16 I don't understand this behavior; I suspect it has to do with unicode, but I don't get it: string trimright <a></e> </e> <a but string trimright <a></e </e <a> what's going on in the first example and how do I stop it? thanks craig
From: Uwe Klein on 21 May 2010 13:59 lowclouds wrote: > I don't understand this behavior; I suspect it has to do with unicode, > but I don't get it: > > string trimright <a></e> </e> > <a > but > string trimright <a></e </e > <a> > > what's going on in the first example and how do I stop it? > > thanks > craig string trim* : trim from the first argument all characters mentioned in the second arg. You don't trim a string but single character enumerated in a string. uwe
From: lowclouds on 21 May 2010 15:20 doh! thanks. that's what I get for blindly thinking someone else understood what they were writing. craig On 5/21/2010 10:59 AM, Uwe Klein wrote: > lowclouds wrote: >> I don't understand this behavior; I suspect it has to do with unicode, >> but I don't get it: >> >> string trimright <a></e> </e> >> <a >> but >> string trimright <a></e </e >> <a> >> >> what's going on in the first example and how do I stop it? >> >> thanks >> craig > > string trim* : > trim from the first argument all characters mentioned in the second arg. > You don't trim a string but single character enumerated in a string. > > uwe
|
Pages: 1 Prev: ActiveTcl 8.6.0.0 Beta 3 released Next: ISO an idea: (Test) drive a C# application from Tcl |