文字列から数値に変換

文字列の日付を数値にして抽出など。CStringでも使える。

char *str = "2013/4/9"
long year,month,day;

sscanf(str,"%d/%d/%d",&year,&month,&day);

ネタ元