index 函数

The index() function is used to determine the position of a letter or a substring in a string. For example, in the word "frog" the letter "f" is in position 0, the "r" in position 1, the "o" in 2 and the "g" in 3. The substring "ro" is in position 1. Depending on what you are trying to achieve, the index() function may be faster or more easy to understand than using a regular expression or the split() function.
Example 1a. Where in a string is a certain letter?
Let's say you are trying to determine if a word has a particular letter in it. Let's look for the letter "l" in the string "perlmeme.org".
#!/usr/bin/perl 
use strict; 
use warnings; 
my $string = 'perlmeme.org'; 
my $char = 'l'; 
my $result = index($string, $char); 
print "Result: $result\n";

This program gives you:
Result: 3
Example 1b. The string doesn't contain the letter?
If the string doesn't contain the letter, index() will return a -1. For example, we can look for the letter "L" in the string "perlmeme.org":
#!/usr/bin/perl 
use strict; 
use warnings; 
my $string = 'perlmeme.org'; 
my $char = 'L'; 
my $result = index($string, $char); 
print "Result: $result\n"  
my $result = index($string, $char, $offset); 
print "Result: $result\n"

The program outputs:
Result: -1
Example 1c. The string contains more than one of the letter?
If the letter we're searching for appears more than once in the string, index() return the index of the first occurrence of the letter.
#!/usr/bin/perl 
use strict; 
use warnings; 
my $string = 'perlmeme.org'; 
my $char = 'e'; 
my $result = index($string, $char); 
print "Result: $result\n";

This program gives you:
Result: 1
Looking for a substring (rather than a single character) works in exactly the same way as looking for a single character:
#!/usr/bin/perl 
use strict; 
use warnings; 
my $string = 'perlmeme.org'; 
my $substr = 'me'; 
my $result = index($string, $substr); 
print "Result: $result\n";

This program gives you:
Result: 4
The index() function let's you specify an offset. This tells index() where to start looking in the string. In our example, we found the first occurrence of the letter 'e' at position 1. Let's try to find the second:
#!/usr/bin/perl 
use strict; 
use warnings; 
my $string = 'perlmeme.org'; 
my $char = 'e'; # The first 'e' was at position 1, so let's start  # looking again at position 2 my $offset = 2; 

The program outputs:
Result: 5
Example 3b. How to find every occurrence
To find (and do something with) every occurrence of a character in a string, you could use index()in a loop, incrementing the offset each time:
#!/usr/bin/perl 
use strict; 
use warnings; 
my $string = 'perlmeme.org'; 
my $char = 'e'; 
my $offset = 0; 
my $result = index($string, $char, $offset); 
while ($result != -1) { 
print "Found $char at $result\n"; 
$offset = $result + 1; 
$result = index($string, $char, $offset); 
}

When we run this program, we get the following output:
Found e at 1 Found e at 5 Found e at 7
Example 4. How to find the last occurrence
Instead of looping through every occurrence of a letter in a string to find the last one, you can use the rindex() function. This works exactly the same as index() but it starts at the end of the string. The index value returned is string from the start of the string though.
#!/usr/bin/perl 
use strict; 
use warnings; 
my $string = 'perlmeme.org'; 
my $char = 'e'; 
my $result = rindex($string, $char); 
print "Result: $result\n";

This would produce:
Result: 7

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值