Open In App

PHP strcspn() Function

The strcspn() function is an in-built function in PHP which returns the number of characters present in a string before any part of the specified characters to be searched are found. This function is case-sensitive.

Syntax :  



strcspn( $string, $charlist, $start, $length)

Parameters : This function accepts four parameters as shown in the above syntax. First two parameters are mandatory and must be supplied while the remaining two parameters are optional. All of these parameters are described below: 
 

Return Value: Returns the number of characters from the starting position (including whitespaces) present in the string before any of the characters from the $charlist parameter is found in the string.



Examples: 

Input : $string = "Geeks for Geeks", $charlist = "mnopqr"
Output : 7

Input : $string = "Geeks for Geeks", $charlist = "for"
Output : 6

Below programs will illustrate the use of strcspn() function : 

Program 1 : This program shows simple use of strcspn() function.  




<?php
  
// Output is 6 because the input string
// contains 6 characters "Geeks " before 
// the first character 'f' from the list
// "for" is found in the string.
echo strcspn("Geeks for Geeks", "for"); 
  
?>

Output

6

Program 2 : This program shows case-sensitivity of strcspn() function. 




<?php
  
// Output is 7 because the input string
// does not contain 'F' as specified in the list "For".
// Hence the first character from the
// list that is present in the string is 'o'
echo strcspn("Geeks for Geeks", "For"); 
  
?>

Output

7

Program 3: This program shows use of strcspn() function with $start parameter. 




<?php
  
// Searches from index 5 till
// the end of the string
echo strcspn("Geeks for Geeks", "G", 5); 
  
?>

Output

5

Program 4: This program illustrates the use of strcspn() function with negative $length parameter.  




<?php
  
// Searches from index 5 till 5-th position
// from end. Output is 0 since the character
// at $start (i.e. 5) is present in the 
// specified list of characters
echo strcspn("Geeks for Geeks", " for", 5, -5);
  
?> 

Output

0

Program 5: This program shows use of strcspn() function with negative $start parameter. 




<?php
  
// Searches from 5th index from the end of the string
// Output is 0 as the character 'G' in the 
// specified starting index is present in the
// given list of characters to be checked.
echo strcspn("Geeks for Geeks", "Geek", -5);
   
?>

Output

0

Reference: 
http://php.net/manual/en/function.strcspn.php
 


Article Tags :