![]() |
Given a String, the task is to split and join strings in PHP. It is a common operations that allow you to manipulate and manage text data effectively. Below are the approaches to split and join a string in PHP: Table of Content Using explode() and implode() FunctionThe explode() function is used to split a string into an array based on a delimiter. It is used when you want to break the given string into individual words. The implode() function is used to join array elements into a single string.
Example: This example shows the use of the above-explained approach.
Output After Splitting Array ( [0] => Hello [1] => and [2] => Welcome [3] => to [4] => Geeks [5] => for [6] => Geeks ) After Joining Hello_and_Welcome_to_Geeks_for_Geeks Using str_split() and Custom Join FunctionThe str_split() function splits a string into an array of characters. For joining, we can create a custom function that concatenates array elements. It will concatenate the array elements into a single string, adding the separator between elements, and returns the resulting string. Example: This example shows the use of the above-explained approach.
Output After Splitting Array ( [0] => H [1] => e [2] => l [3] => l [4] => o [5] => W [6] => o [7] => r [8] => l [9] => d ) After Joining H_e_l_l_o_W_o_r_l_d Using Regular Expressions with preg_split() and implode() FunctionFor more complex splitting patterns, you can use regular expressions with the preg_split() function. The implode() function will be used to join array elements into a single string.
Example: This example shows the use of the above-explained approach.
Output After Splitting Array ( [0] => Hello [1] => and [2] => Welcome [3] => to [4] => GeeksforGeeks ) After Joining Hello_and_Welcome_to_GeeksforGeeks |
Reffered: https://www.geeksforgeeks.org
PHP |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 16 |