|
With the embedded quotes, huh? You
might have to process the string a bit more then. Experiment with split.
You have several options, strip out all the quotes (that would probably be my
choice but I’d need to experiment), strip off the beginning and end
quotes and use ‘”, “’ as the delimiter , or even handle
the quotes in each individual element. Here is a handy search/replace function: private function replace(sString:String,
sFind:String, sReplace:String):String { return sString.split( sFind ).join(
sReplace ); } Tracy From: the cfc is passing this
back "foo", "morefoo", "evenmore",
"etc" On 12/20/05, What does the string look
like? You can use split() to create an array YAHOO!
GROUPS LINKS
|
- RE: [flexcoders] Array declaration problem Tracy Spratt
- Re: [flexcoders] Array declaration problem Richard Hoska
- RE: [flexcoders] Array declaration problem Tracy Spratt

