public
string
SubStr()
{
str=
"Name,Age,Sex,Birthday"
;
[] s=str.split(
','
);
//以逗号为分割
name=s[0];
age=s[1];
sex=s[2];
date=s[3];
}