API15:JString/strcspn
From Joomla! Documentation
Description
UTF-8 aware alternative to strcspn Find length of initial segment not matching mask
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
strcspn($str, $mask, $start=NULL, $length=NULL)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | ||
| $mask | the mask | |
| $start | NULL | Optional starting character position (in characters) |
| $length | NULL | Optional length |
Returns
int the length of the initial segment of str1 which does not contain any of the characters in str2
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
function strcspn($str, $mask, $start = NULL, $length = NULL)
{
jimport('phputf8.strcspn');
if ( $start === FALSE && $length === FALSE ) {
return utf8_strcspn($str, $mask);
} else if ( $length === FALSE ) {
return utf8_strcspn($str, $mask, $start);
} else {
return utf8_strcspn($str, $mask, $start, $length);
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples