splitlines
在换行符处拆分字符串
说明
示例
在换行符处拆分字符串
在换行符处拆分字符串。当文本 \n
表示换行符时,可以使用 compose
函数将其转换为实际的换行符。然后使用 splitlines
在换行符处拆分字符串。
创建一个字符串,其中的两行文本之间用 \n
分隔。您可以使用 +
将文本串联到字符串的末尾。
str = "In Xanadu did Kubla Khan"; str = str + "\n" + "A stately pleasure-dome decree"
str = "In Xanadu did Kubla Khan\nA stately pleasure-dome decree"
将 \n
转换为实际的换行符。尽管 str
显示为两行,但 str
是一个包含两行文本的 1×1 字符串。
str = compose(str)
str = "In Xanadu did Kubla Khan A stately pleasure-dome decree"
在换行符处拆分 str
。newStr
是一个 1×2 字符串数组。每个元素包含一行文本。
newStr = splitlines(str)
newStr = 2x1 string
"In Xanadu did Kubla Khan"
"A stately pleasure-dome decree"
在换行符处拆分字符向量
创建一个字符向量,并在换行符处进行拆分。newline
函数返回换行符 char(10)
。
chr = 'Whose woods these are I think I know.'; chr = [chr newline 'His house is in the village though;']
chr = 'Whose woods these are I think I know. His house is in the village though;'
C = splitlines(chr)
C = 2x1 cell
{'Whose woods these are I think I know.'}
{'His house is in the village though;' }
输入参数
str
— 输入文本
字符串数组 | 字符向量 | 字符向量元胞数组
输入文本,指定为字符串数组、字符向量或字符向量元胞数组。如果 str
是一个字符串数组或字符向量元胞数组,则 str
的每个元素必须包含相同数量的换行符。
输出参量
newStr
— 输出文本
字符串数组 | 字符向量元胞数组
输出文本,以字符串数组或字符向量元胞数组的形式返回。newStr
比 str
多一个维度。新维度的大小比字符串元素中的换行符数多一。splitlines
沿新的维度分配结果。例如,如果 str
是一个 2
×3
字符串数组,而且每个字符串包含三个换行符,则 newStr
是一个 2
×3
×4
数组。
如果输入数组 str
是字符串数组,则 newStr
也是字符串数组。否则,newStr
为字符向量元胞数组。
提示
如果字符串数组的元素具有不同数量的换行符,请使用 for
循环分别访问每个字符串元素并进行拆分。
扩展功能
tall 数组
对行数太多而无法放入内存的数组进行计算。
此函数完全支持 tall 数组。有关详细信息,请参阅 tall 数组。
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
此函数完全支持基于线程的环境。有关详细信息,请参阅在基于线程的环境中运行 MATLAB 函数。
版本历史记录
在 R2016b 中推出
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)