Giriş
Java 21 ile geliyor. İmzası şöyle
String[] splitWithDelimiters(String regex,int limit)
Şöyle yaparız
var str = "foo:::bar::hello:world";var regex = ":+"; // at least one colonvar result = str.splitWithDelimiters(regex, -1);// => String[7] { "foo", ":::", "bar", "::", "hello", ":", "world" }
Hiç yorum yok:
Yorum Gönder