在 MATLAB 中连接字符串

Ammar Ali 2022年5月11日
在 MATLAB 中连接字符串

本教程将讨论使用 Matlab 中的函数 strcat() 连接字符串。

在 MATLAB 中使用 strcat() 函数连接字符串

为了比较两个字符串,我们可以使用 Matlab 内置函数 strcat()。我们需要在函数内部传递我们想要连接的字符串来连接它们。例如,让我们创建两个字符串并使用 Matlab 中的函数 strcat() 将它们连接起来。请参阅下面的代码。

clc
s1 = "Hello"
s2 = "World"
s3 = strcat(s1,s2)

输出:

s1 = 

    "Hello"


s2 = 

    "World"


s3 = 

    "HelloWorld"

在输出中,两个字符串 s1 和 s2 已连接并保存在 s3 中。我们还可以使用 strcat() 函数连接两个元胞数组。在元胞数组的情况下,该函数会将第一个元胞数组的第一个条目与第二个元胞数组的第一个条目以及第一个元胞数组的第二个条目与第二个元胞数组的第二个条目连接起来。例如,让我们创建两个包含字符串的元胞数组,并使用 strcat() 函数将它们连接起来。请参阅下面的代码。

clc
s1 = {'Hello', 'Day'};
s2 = {'World', '10'};
s3 = strcat(s1,s2)

输出:

s3 =

  1×2 cell array

    {'HelloWorld'}    {'Day10'}

变量 s3 在输出中包含两个元素,因为每个元胞数组中有两个元素。元胞数组的大小应相同。否则,会出现错误。如你所见,串连时字符串之间没有空格,但我们可以使用包含空格的第三个元胞数组来放置它。例如,让我们使用第三个元胞数组在上述字符串之间进行调整。请参阅下面的代码。

clc
s1 = {'Hello', 'Day'};
s2 = {'World', '10'};
space = {' '};
s3 = strcat(s1,space,s2)

输出:

s3 =

  1×2 cell array

    {'Hello World'}    {'Day 10'}

在输出中,两个字符串之间现在有一个空格。我们可以在两个字符串之间随意放置任何字符串,例如逗号或句号等。我们也可以在字符串 s1 或 s2 内放置空格,而不是单独放置。你还可以使用 + 运算符来连接两个字符串而不是 strcat() 函数,但请确保使用双引号来定义字符串。否则,结果将是数字,因为如果你在单引号中定义字符串,Matlab 会将它们视为字符向量。例如,使用双引号定义两个字符串,使用单引号定义两个字符串,并使用 + 运算符将它们连接起来。请参阅下面的代码。

clc
s1 = 'Hello';
s2 = 'World';
s3 = s1+s2
ss1 = "Hello";
ss2 = "World";
ss3 = ss1+ss2

输出:

s3 =

   159   212   222   216   211


ss3 = 

    "HelloWorld"

由于单引号,第一个输出是数字,但由于双引号,第二个输出是字符串形式。

作者: Ammar Ali
Ammar Ali avatar Ammar Ali avatar

Hello! I am Ammar Ali, a programmer here to learn from experience, people, and docs, and create interesting and useful programming content. I mostly create content about Python, Matlab, and Microcontrollers like Arduino and PIC.

LinkedIn Facebook

相关文章 - MATLAB String