Home
The Toolkit for Online Communities
15899 Community Members, 0 members online, 2300 visitors today
Log In Register

Forum OpenACS Q&A: Response to TCL string manipulation problems (sorry for bothering)

OpenACS Home : Forums : OpenACS Q&A : Response to TCL string manipulation problems (sorry for bothering) : One Message

Don't put the result from split in another list:
# this splits the e-mail by @ and puts it into a list.
# That contains now {gregor lanifex.com}
set mail_result [split $mail @]