检查字符串是否包含子字符串
如何使用 Perl 检查给定字符串是否包含某个子字符串?
更具体地说,我想查看给定的字符串变量中是否存在 s1.domain.example 。
How can I check whether a given string contains a certain substring, using Perl?
More specifically, I want to see whether s1.domain.example
is present in the given string variable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要查明字符串是否包含子字符串,您可以使用
index
函数:返回
$substr
在$str
中第一次出现的位置,如果没有找到子字符串则返回-1。To find out if a string contains substring you can use the
index
function:It will return the position of the first occurrence of
$substr
in$str
, or -1 if the substring is not found.另一种可能性是使用 正则表达式,这就是 Perl 的著名之处:
需要反斜杠是因为
.
可以匹配任何字符。您可以使用\Q
和\E
运算符来解决此问题。或者,您可以按照 eugene y 的说明进行操作,并使用 索引 函数。
只是警告一下:当 Index 找不到匹配项时,它会返回
-1
,而不是undef
或0
。因此,这是一个错误:
如果
s1.domain.example
位于字符串的开头,这将是错误的。我个人不止一次为此感到恼火。Another possibility is to use regular expressions which is what Perl is famous for:
The backslashes are needed because a
.
can match any character. You can get around this by using the\Q
and\E
operators.Or, you can do as eugene y stated and use the index function.
Just a word of warning: Index returns a
-1
when it can't find a match instead of anundef
or0
.Thus, this is an error:
This will be wrong if
s1.domain.example
is at the beginning of your string. I've personally been burned on this more than once.不区分大小写的子字符串示例
这是尤金答案的扩展,它在检查子字符串之前将字符串转换为小写:
Case Insensitive Substring Example
This is an extension of Eugene's answer, which converts the strings to lower case before checking for the substring: