Hello, I need to read from a text file.
There are only 2 lines in the text file. And I need to read both, line by line as a string. After reading it, I want to use it (concatenate).
For example, each line is represented as string1 and string2. I will concatenate to make a sentence like
"Your number is " + string1 + " and your port is " + string2".
My question is, how do I do it? I read it as array? And convert it to string? Or vice versa?
I'm really confused.
Thanks in advance.