API17

Difference between revisions of "JString::strcspn"

From Joomla! Documentation

(Updated to r1448:247ba8d88526)
m (JoomlaWikiBot moved page JString::strcspn/11.1 to API17:JString::strcspn without leaving a redirect: Robot: Moved page)
(No difference)

Revision as of 21:09, 10 May 2013

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JString::strcspn[edit]

Description[edit]

UTF-8 aware alternative to strcspn Find length of initial segment not matching mask.

Template:Description:JString::strcspn [Edit Descripton]

public static function strcspn (
        $str
        $mask
        $start=NULL
        $length=NULL
)
Parameter Type Default Description
$str string
$mask string the mask
$start int NULL Optional starting character position (in characters)
$length int NULL Optional length
  • Returns int the length of the initial segment of str1 which does not contain any of the characters in str2
  • Defined on line 294 of libraries/joomla/utilities/string.php

See also[edit]

Template:SeeAlso:JString::strcspn [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />