Hi Charles,

<<   I'm not exactly sure what to call this, but in another language I
sometimes
use, I can do something like this.  Where, hypothetically:
data: "Charles-W-Raymond"
info: [firstname middleinit lastname]: parse data "-"
>>

Is this what you're after?

>> data: "Charles-W-Raymond"
== "Charles-W-Raymond"
>> set [first-name middle-name last-name] parse data "-"
== ["Charles" "W" "Raymond"]
>> first-name
== "Charles"
>> last-name
== "Raymond"

--Gregg

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to