Oktatás * Programozás 2 * Szkriptnyelvek * levelezősök Félévek Linkek * kalendárium |
Nim /
20180617msplit and joinSplitimport strutils let text = "This is just\t\ta text" echo text.split() echo text.splitWhitespace() Output: @["This", "", "", "", "", "is", "", "", "", "", "just", "", "a", "", "", "text"] @["This", "is", "just", "a", "text"] Joinimport strutils let words = @["This", "is", "just", "a", "text"] echo words.join("_") Output: This_is_just_a_text |
Blogjaim, hobbi projektjeim * The Ubuntu Incident [ edit ] |