I’m using Get OCR text to get some data from website,
the output is coming as follow
When using split to get each of the following fields, I’m using this
System.Text.RegularExpressions.Regex.Split(Split(clientdetails,“:”)(1).Trim,“\n”)(0)
It’s working fine but I’m always having that “@’ sign before my text even when I scrape the data am getting this sign”@" idk why.
As this sign exists outside double quotes, if you concatenate 2 strings @ sign exists only just before the first double quote. (And it’s displayed in only locals panel. Actual data is not relevant with this @ sign)
This is not an issue anymore, I’m using split to get each field on it’s own then am using assign activity to combine those fields in a single line but they’re being combined each in a separate line .
I’m using the following: String1+“-”+String2+“-”+String3