perl怎么查找字符串位置

avatar
作者
筋斗云
阅读量:0

在Perl中,可以使用index函数来查找一个子字符串在另一个字符串中的位置。

例如,下面是一个简单的示例来查找子字符串"world"在字符串"hello world"中的位置:

my $str = "hello world"; my $substr = "world";  my $pos = index($str, $substr);  if ($pos != -1) {     print "The substring '$substr' was found at position $posn"; } else {     print "The substring '$substr' was not foundn"; } 

上述代码将输出:“The substring ‘world’ was found at position 6”,表示子字符串"world"在字符串"hello world"中的位置是第6个字符(从0开始计数)。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!