[Solved] how i can concatenate two variable it type Text Field?


I couldn’t get what you want. Is this what you want to achieve?

answerScreen.text = valueOne.text! + valueTwo.text!

String values can be added together (or concatenated) with the addition operator (+) to create a new String value:

Check here for more details

4

solved how i can concatenate two variable it type Text Field?