Is there a way to break a string into pairs without looking at indexes? e.g.
TVBMCVTVFGTVTB would be broken into a list of strings as such:
[TV,BM,CV,TV,FG,TV,TB]
Perhaps I should have worded the question to state is their a function similar to string.join, or string.split when working with strings to break them into groups.
If you like some esoteric solutions:
1)
2)