gpt4 book ai didi

Matlab中的字符串startsWith

转载 作者:行者123 更新时间:2023-12-04 16:48:24 27 4
gpt4 key购买 nike

我只想得到 string 的开头,是否有一个等效的 matlab 可以说:startsWith('It-is') 就像在 Java 中一样?
谢谢

最佳答案

您可以使用 strfind 判断一个字符串是否以另一个字符串开头的函数。该函数返回您要查找的字符串每次出现的起始索引,如果未找到该字符串,则返回一个空数组。

S = 'Find the starting indices of the pattern string';
strfind(S, 'It-is')

如果字符串以 'It-is' 开头然后是 strfind 返回的数组的第一个索引将是 1(即第一个字符的索引)。

关于Matlab中的字符串startsWith,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10382713/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com