要在Java中拆分和连接字符串,请使用split()和join()方法,如下面的示例所示 −
示例
public class Demo{
public static void main(String args[]){
String my_str = "This_is_a_sample";
String[] split_str = my_str.split("_", 4);
System.out.println("The split string is:");
for (String every_Str : split_str)
System.out.println(every_Str);
String joined_str = String.join("_", "This", "is", "a", "sample");
System.out.println("The joined string is:");
System.out.println(joined_str);
}
}
登录后复制
输出
The split string is:
This
is
a
sample
The joined string is:
This_is_a_sample
登录后复制
一个名为Demo的类包含了主函数。在这里定义了一个String对象,并根据'_'值将其拆分到最后一个单词。使用'for'循环迭代,并根据'_'值拆分字符串。然后,使用'join'函数将字符串连接起来。相关的消息将显示在控制台上。
以上就是Java程序用于拆分和连接字符串的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!