Java Split() without delimiter. Split every 4 characters
807605Jul 11 2007 — edited Jul 11 2007Hello!
I am trying to use the split funtion to split a string that contains no delimiter.
The string is:
00f1002100410076000700a700c700f1
and I need the output to be:
00f1 0021 0041 0076 0007 00a7 00c7 00f1
As you can see, the string needs to be split after every 4 characters.
Thanks a lot in advance people!!!