主要内容

本页采用了机器翻译。点击此处可查看最新英文版本。

insertAfter

在 Requirements Table 模块中的子字符串后插入字符串

自 R2022b 起

描述

newStr = insertAfter(str,subStr,new) 将字符串 new 插入到字符串 str 中的子字符串 subStr 之后。insertAfter 在每个 new 出现之后插入 subStr。在 Requirements Table 模块中使用此运算符。

示例

newStr = insertAfter(str,pos,new)new 插入到 str 的字符位置 pos 之后。

示例

示例

全部展开

Requirements Table 模块中,创建一个需求,将子字符串 " there" 插入到字符串 "Hello," 中的子字符串 "Hello, world!" 之后。输出为 "Hello there, world!"

y = insertAfter("Hello, world!","Hello"," there")

This example shows a requirement that inserts the substring " there" after the substring "Hello," in the string "Hello, world!".

Requirements Table 模块中,创建一个需求,在字符串 " there" 的第五个字符后插入子字符串 "Hello, world!"。输出为 "Hello there, world!"

y = insertAfter("Hello, world!",5," there")

This example shows a requirement that inserts the substring " there" after the 5th character of the string "Hello, world!".

输入参数

全部展开

输入字符串,指定为字符串标量。用双引号将文字字符串引起来。

示例: "Hello"

数据类型: string

子字符串,指定为字符串标量。用双引号将文字字符串引起来。

示例: "Hello"

数据类型: string

字符位置,指定为正整数。

数据类型: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

新的子字符串,指定为字符串标量。用双引号将文字字符串引起来。

示例: "Hello"

数据类型: string

输出参量

全部展开

输出字符串,以字符串标量形式返回。

限制

  • 此运算符不支持使用 Simulink.Bus 对象字段。

版本历史记录

在 R2022b 中推出