I have string: 1234567890
How can i make it look like: 12 34 56 78 90?
I have string: 1234567890
How can i make it look like: 12 34 56 78 90?
Well, I’m assuming you are getting this string as a conversion from some other source that doesn’t allow spaces (otherwise, you could simply type “12 34 56 78 90” with the spaces in there yourself).
Would a format text node work for your uses? You could convert it from text back to string after you use it. WTF Is? Text- Format Text in Unreal Engine 4 - YouTube
No i think it’s not right idea.
Maybe algorithm with loop will be much better for this work.
Ah, I see, inserting is more logical here. That looks cleaner and neater!
Reverse loop.
What’s the different?Just to understand.
Reverse loop: last to first
Normal loop: first to last.