Package org.jext.dawn.string

Class Summary
CharAtFunction Gets a character in a string.
Usage:
string position charAt
ChrFunction Turns a numeric value into a single character string.
Usage:
number chr
ConcatFunction Concates two strings into a single one.
Usage:
string string concat
EndsWithFunction Test if a string ends with another one.
Usage:
string1 string2 endsWith
Returns 1.0 if string1 ends with string2.
FromStringFunction Turns a numeric value into a String.
HeadFunction Get first char of a string.
Usage:
string head
LastPosFunction Returns the last index of a string in another one.
Usage:
string1 string2 lastPos
Returns last index of string2 in string1.
LowerCaseFunction Turn any upper case char from a string into the lower case equivalent.
Usage:
string lowerCase
NumFunction Returns the ascii value of each char of a given String.
Usage:
string num
PosFunction Returns the index of a string in another one.
Usage:
string1 string2 pos
Returns index of string2 in string1.
SizeFunction Returns the size of a string.
Usage:
string size
StartsWithFunction Test if a string begins with another one.
Usage:
string1 string2 startsWith
Returns 1.0 if string1 begins with string2.
SubFunction Returns a part of a string.
Usage:
string start end sub
Returns the portion of 'string' between start and end.
TailFunction Get first char of a string.
Usage:
string Tail
TokenizeArrayFunction Tokenizes a string and store result in an array.
Usage:
string tokenizeArray
TokenizeDelimFunction Tokenizes a string using a specified set of delimiters.
Usage:
string delims tokenize
It then returns a string per token and the number of tokens on the top of the stack.
TokenizeFunction Tokenizes a string using a set of default delimiters: "\n \r\f\t"
Usage:
string tokenize
It then returns a string per token and the number of tokens on the top of the stack.
ToStringFunction Turns an element to a string
TrimFunction Trims (remove blanks spaces at the beginning and at the end) a string.
Usage:
string trim
UpperCaseFunction Turn any lower case char from a string into the upper case equivalent.
Usage:
string upperCase
 



Copyright © 2002 Romain Guy.