Any suggestions on how I can extract the array from this string?
The current string is:
"['Biller.Customer.Data@Taxonomy', 'Product.Platform and Enterprise Services Data.Data@Taxonomy']"
I need to extract it to look like this:
['Biller.Customer.Data@Taxonomy', 'Product.Platform and Enterprise Services Data.Data@Taxonomy']
I attempted using regex but it didn't work as expected:
string.replace(/"/g, '')
Thank you for any help provided.