首页 > 代码库 > 利用char, str2mat, strvcat创建多行字符串数组
利用char, str2mat, strvcat创建多行字符串数组
用专门函数char , str2mat , strvcat创建多行字符串数组示例。
1.char(‘str1‘, ‘str2‘,...)
Convert to character array (string)转换成字符串数组,空字符串是有效的。
示例:
S1=char(‘This string array‘,‘‘, ‘has two rows.‘)
S1 =
This string array
has two rows.
2.str2mat (新版本中被char替代)
Form blank-padded character matrix from strings
(将字符串转化成有空白填充的字符矩阵)
syntax
S = str2mat(T1, T2, T3, ...)
example
x = str2mat(‘36842‘, ‘39751‘, ‘38453‘, ‘90307‘);whos x Name Size Bytes Class x 4x5 40 char arrayx(2,3)ans = 7
3.strvcat
strvcat会将空字符串忽略掉,这是和char、str2mat的区别。
example:
S3=strvcat(‘123‘, ‘‘, ‘456‘)
S3 =
123
456
利用char, str2mat, strvcat创建多行字符串数组
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。