I'm trying to use a string constructor to convert the 2d char array into a string. Having problems finding the proper constructor. I attempted using various constructors but nothing seems to work.
|
|
This will give you a list of String's
If you want the 2d char array as a single string:
If you simply want to print the char 2d array:
|
||||
|
|
|
What do you mean a 2d char array into a string? If you have this: {{'a', 'b', 'c'}, {'d', 'e', 'f'}} Do you want the result to be: "abcdef"? |
|||
|
|
You want to turn a 2d char array into a single string? Seems kind of strange. Do you want to just concatenate each row at the end of the last row? Long story short, I don't think you will find a built in constructor to do that. You are probably going to have to write something to do that conversion on your own. EDIT:
|
|||||||||||
|
this is one of my option to do .. nevertheless.. there might be a good code!! look for it!!! |
|||||||
|