Skip to content
Advertisement

Split string into 2 letters

I am trying to split a string into 1, 2 and 3 segments.

For example, i currently have this:

JavaScript

Which works well on 1 character splitting, I get:

JavaScript

However when I try:

JavaScript

I get:

JavaScript

Is there a way so that I can output this? :

JavaScript

and then also with 3 characters like this?

JavaScript

Advertisement

Answer

Here it is:

JavaScript

PHPFiddle Link: http://phpfiddle.org/main/code/1bvp-pyk9

And after that, you can just simply echo it in one line, like:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement