uzair_khan
(uzair khan)
1
i have array of string in this below format{ “80991064 14-02-2017 00:00:00 295912 Online”, “33567427 04-03-2018 00:00:00 871 Online”, “98541553 16-12-2017 00:00:00 -232501 Online”, “40804299 22-10-2017 00:00:00 268803 Online”, “64412361 07-03-2018 00:00:00 -60574 Online”}
i want to split it to “80991064 14-02-2017 00:00:00 295912 Online”
“33567427 04-03-2018 00:00:00 871 Online”
Hey @uzair_khan!! I don’t quite understand what you’re asking. But if you want a String of these values separated by a line break, follow:
string.Join(Environment.NewLine, array_test)
Tell me if not!! I hope it helps!
1 Like
Karuna
(Karuna Devanagavi)
6
@uzair_khan
If its resolved your problem, Please mark this as solution.
system
(system)
Closed
7
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.