Versions Compared

Key

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

This routine is available starting with SIL Engine™ 1.0.

Syntax

split(str, regex)

...

Code Block
return split("I went to the store. I bought some milk.", "\\. ");



//period symbol is a special character in regex so it must be escaped

...