+ 1
[ Solved ] Do Somebody Know This In Swift?
I Need To Add The Ouputs Of Two Of Var's Like This var windows1memory = "640 KB Limit" var windows1additionalmemory = "256 KB Floppy Drive" Add A Var For 640 + 256 With Text Please Help Me
3 Answers
+ 1
I Found The Answer In The Lesson
0
You have to split the strings, convert each of their values at index 0 into an integer, add them and then you can use the sum to build another string from it.
0
Please Give Me Code