Hi!
I have a file which may contain a very long string (eg: A base64 encoding)
I would want to split it every n characters in order for an inspector to return a plural object of type substring.
The problem is that the string will not contain a “splittable” character.
Any idea on how to accomplish this?
EG: String=
12341234123412341234123412
split every 4 char:
1234
1234
1234
…
12