Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Many support requests come from users who want to do some kind of text parsing. One of the most effective (and easiest!) ways of parsing scripts is by using the split() routinefunction.

Splitting a Multiline Text Custom Field

Let's say you want to get the value of the third line a multiline text field. At first, this may seem difficult but not if we use the split() routinefunction. For example:

Code Block
string [] textLines = split(#{textFieldMultiLine}, "\\u000A");
string thirdLine = textLines[2];

...

Let's say you wanted to join all lines of our hypothetical multiline text field. You can either loop through all the elements and append each element together, or you can cheat and use the replace() routinefunction.

Code Block
string [] textLines = split(#{textFieldMultiLine}, "\\u000A");
string allTogether = replace(textLines, "|", "");

All this does is replace pipe separators found in an array with an empty string. The same thing can be accomplished by using the join() routinefunction:

Code Block
string [] textLines = split(#{textFieldMultiLine}, "\\u000A");
string allTogether = join(textLines, " ");

...

As you can see, using the split() routine function can be used to parse text in surprising (yet effective) ways.

...