gpt4 book ai didi

Java : split string to char array using regex

转载 作者:行者123 更新时间:2023-12-01 17:15:29 26 4
gpt4 key购买 nike

我知道有很多方法将字符串拆分为数组。但我想知道是否有一个正则表达式,我可以用它来将所有字符串字符拆分为 String[]数组?

例如:"foo" -> String[] { "f","o","o" }

String input="foo";
String[] split=input.split( .... )

最佳答案

试试这个:

String []split = input.split("(?!^)");

但是: String []split = input.split(""); 会得到 {"","f","o","o"}

关于Java : split string to char array using regex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22452691/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com