Element index for package String
[ a ]
[ c ]
[ e ]
[ f ]
[ g ]
[ i ]
[ j ]
[ l ]
[ m ]
[ r ]
[ s ]
[ t ]
[ _ ]
_
- __call
- in file String.class.php, method String::__call()
This magic method will be used if the used method does not actually exist.
- __construct
- in file String.class.php, method String::__construct()
With this method a new string is created.
- __toString
- in file String.class.php, method String::__toString()
This magic method will be used if a script tries to cast this object into a normal string.
top
a
- add
- in file String.class.php, method String::add()
Adds the given string to the existing string.
- addMore
- in file String.class.php, method String::addMore()
With this you can add an array of strings.
top
c
- callFunction
- in file String.class.php, method String::callFunction()
Calls the given string function.
- charAt
- in file JavascriptString.class.php, method JavascriptString::charAt()
Returns the character at the given position.
- charCodeAt
- in file JavascriptString.class.php, method JavascriptString::charCodeAt()
Returns the ASCII-Code for the character at the given position.
- concat
- in file JavascriptString.class.php, method JavascriptString::concat()
Wrapper for String->add().
- CONTROL_CHAR_CARRIAGE_RETURN
- in file String.class.php, class constant String::CONTROL_CHAR_CARRIAGE_RETURN
- CONTROL_CHAR_FORM_FEED
- in file String.class.php, class constant String::CONTROL_CHAR_FORM_FEED
- CONTROL_CHAR_HORIZONTAL_TAB
- in file String.class.php, class constant String::CONTROL_CHAR_HORIZONTAL_TAB
- CONTROL_CHAR_LINEFEED
- in file String.class.php, class constant String::CONTROL_CHAR_LINEFEED
- CONTROL_CHAR_VERTICAL_TAB
- in file String.class.php, class constant String::CONTROL_CHAR_VERTICAL_TAB
- copy
- in file String.class.php, method String::copy()
Creates a new String object from the existing one.
top
e
- edit
- in file String.class.php, method String::edit()
Calls the given string function.
top
f
- fromCharCode
- in file JavascriptString.class.php, method JavascriptString::fromCharCode()
Takes an integer array, creates for each value the character and adds it to the string.
top
g
- get
- in file String.class.php, method String::get()
Returns the string.
top
i
- indexOf
- in file JavascriptString.class.php, method JavascriptString::indexOf()
Looks for the first occurence of the given string and returns the position of the first character.
- insert
- in file String.class.php, method String::insert()
To insert a string into an existing one use this method.
- insertMore
- in file String.class.php, method String::insertMore()
To insert an array of string into an existing one use this method.
top
j
- JavascriptString
- in file JavascriptString.class.php, class JavascriptString
Extension to the String class to define similar methods like in javascript.
- JavascriptString.class.php
- procedural page JavascriptString.class.php
top
l
- lastIndexOf
- in file JavascriptString.class.php, method JavascriptString::lastIndexOf()
Looks for the last occurence of the given string and returns the position of the first character.
- length
- in file JavascriptString.class.php, method JavascriptString::length()
Counts all characters of the string and returns the sum of them.
top
m
- match
- in file JavascriptString.class.php, method JavascriptString::match()
This is a wrapper for preg_match_all() and returns every found match for the given regular expression.
top
r
- replace
- in file JavascriptString.class.php, method JavascriptString::replace()
This is a wrapper for preg_replace and replaces every occurence of the given regular expression with the given replacement.
- reset
- in file String.class.php, method String::reset()
Resets the existent string.
top
s
- $string
- in file String.class.php, variable String::$string
- search
- in file JavascriptString.class.php, method JavascriptString::search()
This method searches for the given regular expression and returns the position of the first character of it, when found.
- set
- in file String.class.php, method String::set()
Sets a string for further editing or return of the string.
- show
- in file String.class.php, method String::show()
Shows the string.
- slice
- in file JavascriptString.class.php, method JavascriptString::slice()
This is a wrapper for JavascriptString->substring().
- split
- in file JavascriptString.class.php, method JavascriptString::split()
Splits the existent string at the given seperator and returns the parts as array.
- String
- in file String.class.php, class String
Generic class for PHP to handle strings on a way inspired by C++.
- String.class.php
- procedural page String.class.php
- STRING_AFTER
- in file String.class.php, class constant String::STRING_AFTER
- STRING_BEFORE
- in file String.class.php, class constant String::STRING_BEFORE
- substr
- in file JavascriptString.class.php, method JavascriptString::substr()
Returns the string from the given starting position with the given length.
- substring
- in file JavascriptString.class.php, method JavascriptString::substring()
Returns the string from the given starting position to the given end position.
top
t
- toLowerCase
- in file JavascriptString.class.php, method JavascriptString::toLowerCase()
Transforms every character in the existent string to his lower version.
- toUpperCase
- in file JavascriptString.class.php, method JavascriptString::toUpperCase()
Transforms every character in the existent string to his upper version.
top
|
|