利用char, str2mat, strvcat创建多行字符串数组

Posted 那抹阳光1994

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用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 array

x(2,3)

ans =

    7

3.strvcat
strvcat会将空字符串忽略掉,这是和char、str2mat的区别。
example:
S3=strvcat(‘123‘, ‘‘, ‘456‘) 
S3 =
123
456

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

以上是关于利用char, str2mat, strvcat创建多行字符串数组的主要内容,如果未能解决你的问题,请参考以下文章

利用fork创建子进程

信创办公--基于WPS的Word最佳实践系列(利用表格控制排版)

利用 VMware 创建一台虚拟机

如何利用fleet单元文件为CoreOS集群创建高灵活性服务

ORACLE中创建如何创建表,并设置结构和默认值

信创办公--基于WPS的Word最佳实践系列(利用项目符号及编号条理化文本)