instr 函数用于在文本字符串中查找子字符串的第一个出现位置并返回其位置。语法:instr([start], string, substring)。用法示例:instr(1, “hello world”, “world”) 可查找 “world” 在 “hello world” 中的第一个出现位置。
instr函数的用法
INSTR 函数用于在文本字符串中查找子字符串的第一个出现位置,并返回其位置。它的语法为:
INSTR([start], string, substring)
登录后复制
其中:
- start(可选):指定在 string 中开始搜索的位置。如果省略,则从字符串开头开始搜索。
- string:要搜索的文本字符串。
- substring:要查找的子字符串。
用法示例:
'查找字符串 "World" 在 "Hello World" 中的第一个出现位置' =INSTR(1, "Hello World", "World") '从字符串 "Hello World" 中第 5 个字符开始查找 "World"' =INSTR(5, "Hello World", "World") '如果子字符串不在字符串中,则返回错误值 #VALUE!' =INSTR(1, "Hello", "World")
登录后复制
注意事项:
- INSTR 对于大小写敏感。
- 如果要查找重叠的子字符串,可以使用 FIND 函数。
- INSTR 可以与其他文本函数(如 LEN、MID 和 SUBSTITUTE)配合使用以执行更复杂的操作。
以上就是instr函数的用法的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:weapp,转转请注明出处:https://www.dingdanghao.com/article/517785.html