Forum Discussion
wm-thompson
Dec 20, 2023Brass Contributor
An Issue With Double Quotes In String Values
I am a software engineer that is going to be tasked with debugging a power app. The app currently acquires a CSV file from an email account and parses it into a JSON file and then uses that file ...
wayne110
Jan 06, 2024Copper Contributor
Hello wm-thompson,
What language is the app written in. I have yet to come across a programming language that did not have some sort of string manipulation (object, process, etc...). For instance, in VB (any version), you could remove the double quotes with something akin to this:
'in your parse routine
Dim myStr As String
myStr = Replace(stringWithQuotes,"""","")
Full transparency here; I know next to nothing about Power BI
HTH
What language is the app written in. I have yet to come across a programming language that did not have some sort of string manipulation (object, process, etc...). For instance, in VB (any version), you could remove the double quotes with something akin to this:
'in your parse routine
Dim myStr As String
myStr = Replace(stringWithQuotes,"""","")
Full transparency here; I know next to nothing about Power BI
HTH