Does anyone know if it’s possible to run pipes in succession?
For example: I have a name field (FIRST LAST). I want to replace the space with an underscore with replace(' ', '_')
and then take the results and make the string lowercase with toLowerCase()
. End result would be: first_last.