Skip to content

split

Category: String

Splits the input string by the specified separator and returns a collection of strings

  • Return type: collection
  • Parameters:
    • separator string — String to split by
'a,b,c'.split(',')
Patient.name.text.split(' ')