Hi,
I have this text E123456789T.
I want to remove the alphabet T from the text.
Result should be E123456789
Please help.
Thanks
Farha
Hi,
I have this text E123456789T.
I want to remove the alphabet T from the text.
Result should be E123456789
Please help.
Thanks
Farha
Hi Farha,
To remove the last character of a string you can use itβs Substring method:
yourString.Substring(0, yourString.Length -1)
Hope it helps.
Thank u