String Manipulation Help needed

Hi
Select DC10 -I need to remove Select from the String and enter the remaining in a form. How to achieve that?

You can use Replace or String method

Can you give the exact expression

1 Like

Hey @Ankita_Biswas,

Considering you have stored your string in sampleText variable.

sampleText.Replace("Select", "").Trim

Try this, may help you.

Thanks :slight_smile:

3 Likes

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