Pipes
prefix | Description | Format | Example &g.locale|upperCase |
---|---|---|---|
| | Pipes are mini functions you can pass text or Variables to manipulate their outcome | | pipe | GR |
info
You can chain pipes together, for example john|consonants|upperCase
would display JHN
#
List of Pipesacronym#
Description | Type |
---|---|
returns the acronym of the input | string |
camelCase#
Description | Type |
---|---|
returns an camelcase of the input | string |
capitalise#
Description | Type |
---|---|
returns the input capitalised, the first letter capitalcase and the rest lowercase | string |
consonants#
Description | Type |
---|---|
returns the consonants of the input | string |
decapitalise#
Description | Type |
---|---|
returns the input decapitalised, the first letter lowercase and the rest capitalcase | string |
length#
Description | Type |
---|---|
returns the length of text | number |
lowerCase#
Description | Type |
---|---|
returns an lowercase of the input | string |
populous_count#
Description | Type |
---|---|
returns the number of times the most common element was found in list | number |
populous#
Description | Type |
---|---|
returns the name of the most common element in list | list |
snakeCase#
Description | Type |
---|---|
returns an snakecase of the input | string |
souvlakiCase#
Description | Type |
---|---|
returns an souvlakicase of the input | string |
titleCase#
Description | Type |
---|---|
returns an titlecase of the input | string |
upperCase#
Description | Type |
---|---|
returns an uppercase of the input | string |
vowels#
Description | Type |
---|---|
returns the vowels of the input | string |
word#
Description | Type |
---|---|
returns # words of the input | string |