当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Perl index()用法及代码示例


此函数返回给定子字符串(或模式)在字符串(或文本)中首次出现的位置。我们可以指定开始位置。默认情况下,它从头开始搜索(即从索引零开始)。

用法:
# Searches pat in text from given index
index(text, pat, index)

#搜索文字中的拍子
索引(文本,拍拍)


参数:

  • text:要在其中搜索子字符串的字符串。
  • pat:要搜索的子字符串。
  • index:起始索引(由用户设置,默认情况下为零)。

返回值:
-1失败,否则匹配字符串的位置。

示例1:

#!/usr/bin/perl 
  
# String from which Substring  
# is to be searched  
$string = "Geeks are the best"; 
  
# Using index() to search for substring 
$index = index ($string, 'the'); 
  
# Printing the position of the substring 
print "Position of 'the' in the string: $index\n";
输出:
Position of 'the' in the string: 10

示例2:

#!/usr/bin/perl 
  
# String from which Substring  
# is to be searched  
$string = "Geeks are the best"; 
  
# Defining the starting Index 
$pos = 3; 
  
# Using index() to search for substring 
$index = index ($string, 'Geeks', $pos); 
  
# Printing the position of the substring 
print "Position of 'Geeks' in the string: $index\n";
输出:
Position of 'Geeks' in the string: -1

在此,在第二个示例中,位置设置为“ 3”,即,从第3个位置开始搜索的起始索引。因此,在字符串中找不到子字符串。



相关用法


注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 Perl | index() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。