How to convert 1 dimensional array of string into a string or a generic value

Hello All,
I am getting a full text from a website, I am then Scrapping a particular text from it. It’s output is (string).
I would like to convert that particular text into string so I can pass it on to a particular cell in excel.

Thank you

Hi.

If it’s an array, you can use String.Join()
For example,

String.Join(vblf, stringarray)
1 Like