I have a string str="Next Action By Download Provider : Price is required; "
I want to remove "Next Action By Download Provider : " but when i am doing its keeping a space.
rowValue = rowValue.Replace("Next Action By Download Provider : ", " ") .
How can i remove a space which is replacing the string.
Loading
Vishal YelvePosted Nov 19, 2024, 3:35 PM
Hi Pinku,
try this
just use Trim() in the end
PinkuPosted Nov 20, 2024, 4:15 AM
Thanks Vishal.Its working