2006年3月6日

摘要: static int findNum( const char* str){ char Num[8]; int i = 0; int reval = -1; const char* p = str; while ( *p && ((*p > '9') || (*p < '0'))) p++; if ( *p ) { while (*p <= '9' && *p >= '0' ) { Num[i++]= *p++; } } else { return reval; } if ( 阅读全文
posted @ 2006-03-06 21:58 h2内存数据库 阅读(232) 评论(0) 推荐(0) 编辑

导航