Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to convert JArray to string

I have a JArray like this:

jaFruits = ["Apple","Pineapple","Banana","Orange"];

How to convert it into a string like below?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

string strFruits -> "’Apple’, ‘Pineapple’, ‘Banana’, ‘Orange’";

any help is appreciated.

thank you so much in advance.

Regards
Don

>Solution :

I’d do something along these lines:

string strFruits = String.Join(", ",jaFruits.Select(m=>$"'{m}'"));
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading