Created
May 22, 2018 13:25
-
-
Save sebge2emasphere/8157a61ab5085a12403f0fbe803d7bf2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
key(val("ref")) | |
key(val("firstName"), val("lastName")) | |
key(toUpperCase(val("ref"))) | |
key(toLowerCase(val("ref"))) | |
key(takeFirstCharacters(val("ref"), 2)) | |
key(takeLastCharacters(val("ref"), 2)) | |
key(takeLastCharacters(val("ref"), 0)) | |
key(takeRegexGroup(val("ref"), "regex", 1)) | |
key(concat(val("firstName"), " ", val("lastName"))) | |
key(" ") | |
key(const(" ")) | |
key(true) | |
key(const(true)) | |
key(0) | |
key(9.9) | |
key(999.981) | |
key(99) | |
key(+99) | |
key(-99) | |
key(-9.9) | |
key(+9.9) | |
key(const(99)) | |
// key(year(2017)) | |
// key(month(2017, 12)) | |
// key(date(2017, 12, 25)) | |
// key(hour(2017, 12, 25, 16)) | |
// key(dateTime(2017, 12, 25, 16, 30, 45)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment