how to concat strings coming from serial input?
in
Programming Questions
•
6 months ago
I want to concat strings until i get a comma (,) in between strings.
For example :
If i'm getting data :
23.02
23.02
q23e489,
8923.09
q344,
2
345,
234
how to concat above data?
And split the data only when i get a comma in between.
so that i get the final result as:
23.02q23e489
23.02q23e489
8923.09q344
2345
234
Thanks 4 any help.
1