skip-first-chars
text →
skip-first-chars(
length: integer
) → text
Returns the last chars of the argument value. The length of the string omitted at the beginning of the argument value is equal to the parameter value. If the length of the argument value is smaller or equal to the parameter value then the functions returns empty.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
length | integer | Yes | An integer value between 0 and +Infinity, defining the length of the substring to skip. |
Examples
"Hello World" | skip-first-chars(2) → "llo World"
Kind: Function
Scope: text/selection
Aliases: text-to-skip-first-chars