split function? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 9

split function?

what it does

30th Apr 2017, 8:33 PM
code
code - avatar
4 Answers
+ 8
split a string characters into an array by a delimiter for example st = "this is a string"; sp = st.split(" "); // delimiter is a space character // sp = ["this", "is", "a", "string"]
30th Apr 2017, 8:45 PM
Burey
Burey - avatar
12th Jun 2017, 9:05 AM
Prudhvi Raaj
Prudhvi Raaj - avatar
+ 7
ok it make sense i ll solve the question now on quizes thx @burey @claudio
30th Apr 2017, 8:48 PM
code
code - avatar
+ 5
split a string into an array, given a separator
30th Apr 2017, 8:44 PM
⏩▶Clau◀⏪
⏩▶Clau◀⏪ - avatar