Link to home
Start Free TrialLog in
Avatar of Jay Roy
Jay RoyFlag for United States of America

asked on

split into two strings

hi guys

I have a question

I have
var period:String = 'June-2009 (CANCEL)';
I want to split into two strings
string1 should be 'June'  
and string2  should be '2009'
I have
var Pair:Array = period.split("-");
var string1 = period[0]; -- //should be  June
var string2 = period[1];-- //should be 2009

any idea how i can do that?

thanks
Avatar of petiex
petiex
Flag of United States of America image

just change
var Pair:Array = period.split("-");
to this:
var Pair:Array = period.split(/-| /);
that should give you a 3-item array with June in item 0, 2009 in item 1, and (CANCEL) in item 3.
Avatar of Jay Roy

ASKER

ok. but little confused

period.split(/-| /);


what are these characters  /  -  |   /

thx
ASKER CERTIFIED SOLUTION
Avatar of petiex
petiex
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial