空字符串和单个定界符字符串的字符串拆分行为

空字符串和单个定界符字符串的字符串拆分行为,第1张

字符串和单个定界符字符串的字符串拆分行为

具体根据

java.util.regex.Pattern
源,其
String.split(..)
使用,

"".split("x");   // returns {""} - valid - when no match is found, return the original string"x".split("x");  // returns {} - valid - trailing empty strings are removed from the resultant array {"", ""}"xa".split("x"); // returns {"", "a"} - valid - only trailing empty strings are removed"ax".split("x"); // returns {"a"} - valid - trailing empty strings are removed from the resultant array {"a", ""}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5616052.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存