MoneyWorks Manual
RemoveLeading (string, count [, boolInBytes])
Result Type: Text
Definition: Returns the remainder of the string after removing the specified number of characters from the beginning.
Examples: RemoveLeading("nybble", 3)
— returns “ble”.
If boolInBytes is true or IN_BYTES (which is a constant with value true), then the count is regarded as bytes, not characters. This option should only be used when the string is known to be pure ASCII. It is much faster because it does not account for multibyte unicode characters.
Availability: v9.0.8 and later
See Also:
Dice: Get a subcomponent of a delimited tabular string
Head: Get some elements from the start of a delimited string
Left: Get characters from the start of a string
Mid: Get characters from the middle of a string
Regex_GetMatches: Find tokens using a regular expression
Regex_Match: Test whether a string matches a regular expression
Regex_Replace: Replace text in a string using a regular expression
Regex_Search: Find the first match of a regular expression in a string
Regex_SearchStr: Find the first match of a regular expression in a string and return the matching string
RemoveTrailing: Remove characters from the end of a string
Replace: Replace matching text in a string with new text
Right: Get characters from the end of a string
Slice: Get a component of a delimited string
Tail: Get some elements from the end of a delimited string
Trim: Remove whitespace from beginning and end of a string