| Home >> All >> org >> jext >> dawn >> [ string Javadoc ] |
org.jext.dawn.string: Javadoc index of package org.jext.dawn.string.
Package Samples:
org.jext.dawn.string
Classes:
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.
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.
LastPosFunction: Returns the last index of a string in another one. Usage: string1 string2 lastPos Returns last index of string2 in string1.
StartsWithFunction: Test if a string begins with another one. Usage: string1 string2 startsWith Returns 1.0 if string1 begins with string2.
EndsWithFunction: Test if a string ends with another one. Usage: string1 string2 endsWith Returns 1.0 if string1 ends with string2.
SubFunction: Returns a part of a string. Usage: string start end sub Returns the portion of 'string' between start and end.
PosFunction: Returns the index of a string in another one. Usage: string1 string2 pos Returns index of string2 in string1.
UpperCaseFunction: Turn any lower case char from a string into the upper case equivalent. Usage: string upperCase
LowerCaseFunction: Turn any upper case char from a string into the lower case equivalent. Usage: string lowerCase
TrimFunction: Trims (remove blanks spaces at the beginning and at the end) a string. Usage: string trim
TokenizeArrayFunction: Tokenizes a string and store result in an array. Usage: string tokenizeArray
NumFunction: Returns the ascii value of each char of a given String. Usage: string num
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
CharAtFunction: Gets a character in a string. Usage: string position charAt
SizeFunction: Returns the size of a string. Usage: string size
HeadFunction: Get first char of a string. Usage: string head
TailFunction: Get first char of a string. Usage: string Tail
FromStringFunction: Turns a numeric value into a String.
ToStringFunction: Turns an element to a string
| Home | Contact Us | Privacy Policy | Terms of Service |