要在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程式用於拆分和連接字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!