Split Text at Character

Split Text at Character

From
Status
Updating
Share
Entries

Before :

contains(prop("Name"), ":") ? replace(prop("Name"), ":(.*)", "") : ""

After :

contains(prop("Name"), ": ") ? replace(prop("Name"), "^[^:]*: ", "") : ""

First Bit

contains(prop("Name"), prop("Split at")) ? replace(prop("Name"), prop("Split at") + "(.*)", "") : ""

Second Bit

contains(prop("Name"), prop("Split at")) ? replace(prop("Name"), "^[^" + prop("Split at") + "]*" + prop("Split at"), "") : ""
 
By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!
By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!