How to remove double quotation in (output table) note pad?

After data extract how to remove " in the report.
example:-
“bank name xyz, date of open xxxxx”

Already i used Read range–>output data table -->write text file

Thank you,
Raghu K M

Hi @Raghu_km

How about this Regular expression

System.Text.RegularExpressions.Regex.Match(YourString,"(?<=“)\S.*(?=”)").Tostring

image

Regards
Gokul

Hi,

How about the following?

strDt = String.Join(columnSeparater,dt.Columns.Cast(Of DataColumn).Select(Function(dc) dc.ColumnName))+vbcrlf+String.Join(vbcrlf,dt.AsEnumerable.Select(Function(r) String.Join(columnSeparater,r.ItemArray)))

Sequence.xaml (7.6 KB)

Regards,

Thanks Gokul, do you have workflow for this.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.