std::core::string

split

fn String[] String.split(self, Allocator allocator, String delimiter, usz max = 0, bool skip_empty = false)
Split a string into parts, e.g "a|b|c" split with "|" yields { "a", "b", "c" }

Parameters