How could I split a String into an array in Kotlin?

Michael F. :

I need to split a String read in from a file into an array of values. I want to split the String at the commas, so for example, if the String read:

"name, 2012, 2017"

The values in the array would be:

  • array index 0 - name
  • array index 1 - 2012
  • array index 2 - 2017

I found this example in Java:

String[] stringArray = string.split(",");

How I could do it in Kotlin?

JK Ly :
val strs = "name, 2012, 2017".split(",").toTypedArray()

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=425854&siteId=1