shithub: mc

ref: 18a02fb4c1dc435eb40d8e51c50611e2122333ee
dir: /test/strsplit.myr/

View raw version
use std

const main = {
	var i
	var sp

	sp = std.strsplit("a,b,c,d", ",")
	for i = 0; i < sp.len; i++
		std.put("\"%s\"\n", sp[i])
	;;
	std.slfree(sp)

	sp = std.strsplit("a,,b,c,,d", ",")
	for i = 0; i < sp.len; i++
		std.put("\"%s\"\n", sp[i])
	;;
	std.slfree(sp)

	sp = std.strsplit("a--b---b--c---c-d--d", "---")
	for i = 0; i < sp.len; i++
		std.put("\"%s\"\n", sp[i])
	;;
	std.slfree(sp)
}