We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppose we want to join two columns.
version: 1 columns: greeting: - [ value: "Our beloved client", input: title, input: first_name, input: last_name, ] - join: " "
We are facilitating the built-in YAML construct to make a list. I think this looks rather user-friendly.
The text was updated successfully, but these errors were encountered:
Support for lists allows us to use whole lot of list-oriented functions people are accustomed to. Examples:
- join: ", " - range: [0, 3] - filter: unempty - map: strip - reverse - first - last - max - min - average - sort
Sorry, something went wrong.
How do we construct a list where one of the items requires a more complicated expression?
- [ [ - input: age - string ], value: "year(s)" ]
Something like this, I think.
Now let's consider a real life example - splitting postal codes into two parts.
columns: zipcode_split: - input: zip_code - strip - replace: "-": "" - split-by-index: 5 - hide zip5: - from: zipcode_split - index: 0 zip4: - from: zipcode_split - index: 1
No branches or pull requests
Suppose we want to join two columns.
We are facilitating the built-in YAML construct to make a list. I think this looks rather user-friendly.
The text was updated successfully, but these errors were encountered: