If a string like "RL2R'F2LD'" given,What is the most efficient way of splitting this into Strings "R" "L2" "R'" "F2" "L" "D'"?
I’v tried few methods like first splitting them into individual chars and then trying to add them to a list and nothing worked correctly.
If a string like RL2R’F2LD’ given,What is the most efficient way of splitting this
Share
could do your job. With
you get your desired result, with
as well.