This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 7 matches

by tomcat
Thu Dec 11, 2008 5:13 pm
Forum: Scripting Help
Topic: Problem with special characters ² ³ and °
Replies: 20
Views: 11699

We found a dirty but working way to fix it :)
tnx all for help
by tomcat
Thu Dec 11, 2008 4:38 pm
Forum: Scripting Help
Topic: Problem with special characters ² ³ and °
Replies: 20
Views: 11699

I tried iso 8859 the other is not known and utf-8

it doesnt matter ² ³ ° still dont get replaced with \² \³ \°
by tomcat
Thu Dec 11, 2008 4:07 pm
Forum: Scripting Help
Topic: Problem with special characters ² ³ and °
Replies: 20
Views: 11699

8.5.5
by tomcat
Thu Dec 11, 2008 2:32 pm
Forum: Scripting Help
Topic: Problem with special characters ² ³ and °
Replies: 20
Views: 11699

source -encoding iso-8659-1 scripts/scanner.tcl
results in crash...
by tomcat
Thu Dec 11, 2008 1:47 pm
Forum: Scripting Help
Topic: Problem with special characters ² ³ and °
Replies: 20
Views: 11699

proc filt {data} {
regsub -all -- {(\\|\[|\]|\&|\{|\}|"|'|\262|\263)} $data {\\\1} data
return $data

or

proc filt {data} {
regsub -all -- {(\\|\[|\]|\&|\{|\}|"|'|\²|\³)} $data {\\\1} data
return $data

does not work -.-

Its an eggdrop script how to use the -encoding option ?
by tomcat
Thu Dec 11, 2008 10:04 am
Forum: Scripting Help
Topic: Problem with special characters ² ³ and °
Replies: 20
Views: 11699

does not work
by tomcat
Thu Dec 11, 2008 5:07 am
Forum: Scripting Help
Topic: Problem with special characters ² ³ and °
Replies: 20
Views: 11699

Problem with special characters ² ³ and °

Hi i have some problems with ² ³ and ° i want to replace them with \² \³ and \° but for example regsub -all -- \\\³ $data \\\³ data does not work :( some guys told me to use regsub -all -- {(\\|\[|\]|\&|\{|\}|"|'|\262|\263)} $data {\\\1} data to remove all special characters. It works fine ...