How to remove "^" from the text

I am having a text like ^GSPC So i want remove “^” this symbol

Hi,

How about the following?

yourString.Replace("^","")

Regards,

1 Like

it is in column

image

Hi,

How about the following?

CurrentRow.ByIndex(0)=CurrentRow.ByIndex(0).ToString.Replace("^","")

Regards,

HI @Manju_Reddy_Kanughula

Checkout this steps

  • Enable Modern Design by Activity Panel-> Filters-> Show Modern
    image
  • Excel Process Scope
    • Use excel File
      • Find/Replace Value
        • Where to Search - Excel.Sheet("SheetName").Range("A:A")
          What to Search - “^”
          Replace With - “”

Regards
Sudharsan

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