當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。