|
Options |
Name |
Purpose |
|
+
|
CHARACTER CamelCaseWord (character)
|
CamelCases a single word
|
|
+
|
CHARACTER CamelCaseWords (character)
|
CamelCases a string from "Camel case" to "CamelCase"
|
|
+
|
CHARACTER CamelCaseWords2 (character)
|
CamelCases a string from "Camel case" to "CamelCase"
|
|
+
|
CHARACTER CapitalizeFirstLetter (character)
|
Capitalizes the first letter of a given string
|
|
+
|
LOGICAL ContainsAnyStringOf (longchar, character[])
|
Returns true when the source string contains at least one of the target strings
|
|
+
|
INTEGER CountOccurencesOf (character, character)
|
Counts the occurences of the given target string in the source string
|
|
+
|
LOGICAL Ends (character, character)
|
Returns TRUE when the given source string ends in the ending string
|
|
+
|
INTEGER FindClosingBracket (longchar, integer)
|
Returns the position of the closing bracket for the bracket opened
at the given position in the String
|
|
+
|
INTEGER FindClosingComment (longchar, integer)
|
Returns the position of the closing comment for the comment opened
at the given position in the String
|
|
+
|
INTEGER FindClosingQuote (longchar, integer)
|
Returns the position of the closing quote sign (either " or ') in a String
|
|
+
|
CHARACTER FirstNonEmptyString (character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character, character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character, character, character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character, character, character, character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character, character, character, character, character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character, character, character, character, character, character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character, character, character, character, character, character, character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character, character, character, character, character, character, character, character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character, character, character, character, character, character, character, character, character, character)
|
Returns the first non empty string of the parameter list
|
|
+
|
CHARACTER FirstNonEmptyString (character[])
|
Returns the first non empty string of the provided array
|
|
+
|
INTEGER FirstOccurenceOf (character, character)
|
Returns the first position of any of the given characters in the
source string
|
|
+
|
INTEGER FirstOccurenceOf (character, character, integer)
|
Returns the first position of any of the given characters in the
source string
|
|
+
|
LONGCHAR FixLineEnding (longchar)
|
Fixes the line ending characters of the given longchar
|
|
+
|
CHARACTER GenerateUuid ()
|
Returns the CHARACTER representation of a new UUID
|
|
+
|
CHARACTER Indent (character, integer)
|
Indents a string by inserting a SPACE character at the beginning
of every line
|
|
+
|
CHARACTER Indent (longchar, integer)
|
Indents a string by inserting a SPACE character at the beginning
of every line
|
|
+
|
CHARACTER Insert (character, integer, character)
|
Inserts a string into another string at a give position
|
|
+
|
LONGCHAR Insert (longchar, integer, character)
|
Inserts a string into another string at a give position
|
|
+
|
LOGICAL IsLowercaseCharacter (character)
|
Returns true when the given character is UPPERCASE
|
|
+
|
LOGICAL IsUppercaseCharacter (character)
|
Returns true when the given character is UPPERCASE
|
|
+
|
INTEGER NextNonWhiteSpaceCharacter (longchar)
|
Returns position of the next non whispace character
|
|
+
|
INTEGER NextNonWhiteSpaceCharacter (longchar, integer)
|
Returns position of the next non whispace character
|
|
+
|
LONGCHAR PrefixLines (longchar, character)
|
Prefixes every line in the given LONGCHAR with a given CHARACTR
|
|
+
|
Consultingwerk.Framework.Collections.CharacterList QuoteAndBracketSafeEntriesToList (character)
|
Returns an CharacterList of the Entries in a delimited String
|
|
+
|
Consultingwerk.Framework.Collections.CharacterList QuoteAndBracketSafeEntriesToList (character, character)
|
Returns an CharacterList of the Entries in a delimited String
|
|
+
|
Consultingwerk.Framework.Collections.CharacterList QuoteSafeEntriesToList (character)
|
Returns an CharacterList of the Entries in a delimited String
|
|
+
|
Consultingwerk.Framework.Collections.CharacterList QuoteSafeEntriesToList (character, character)
|
Returns an CharacterList of the Entries in a delimited String
|
|
+
|
CHARACTER RemovePrefix (character, character)
|
Removes the given prefix at the beginning of the passed in String
|
|
+
|
CHARACTER RemoveSuffix (character, character)
|
Removes the given suffix at the beginning of the passed in String
|
|
+
|
CHARACTER Unquote (character)
|
Removes quotes from a Character String
|
|
+
|
LONGCHAR Unquote (longchar)
|
Removes quotes from a Longchar String
|
|
+
|
CHARACTER UrlEncode (character, character)
|
Encodes unsafe characters in a URL as per RFC 1738 section 2.2.
http://ds.internic.net/rfc/rfc1738.txt
|
|
+
|
CHARACTER WellFormFromCamelCase (character)
|
Turns a CamelCased string into a well formed sentence (Camel Cased)
|