http://blog.csdn.net/gotomic/article/details/7898307
注意到以'.'分割时,写成'.'。前者代表其他含义。可通过help regexp来查询。
例子:字符串分割,
str = deblank(line);%去掉两端空格
index_reg=regexp(str, 's+', 'split'); %多个空格隔开
http://blog.csdn.net/gotomic/article/details/7898307
注意到以'.'分割时,写成'.'。前者代表其他含义。可通过help regexp来查询。
例子:字符串分割,
str = deblank(line);%去掉两端空格
index_reg=regexp(str, 's+', 'split'); %多个空格隔开