Quotes

Hi

I have number in Excel cell like this 88451619454’ I want to remove that single quote from that number how can I do that

One of many Options:
grafik

Assign Activity:
strCleansed = System.Text.RegularExpressions.Regex.Replace(YourOrigStringVar,"\D","")

Hii @murali_potnuri ,

Give atry to this.

NumberVariable= Split(YourCurrentrowexcelvalue,“’”)(0)

image

Regards,

@murali_potnuri

You can use a replace

Str.Replace("’","")

Use this in a loop and instead of str use currentrow("columnname").ToString and assign it to currentrow("columnName")

Cheers