Hi,
I want to remove a particular word from the below string.
"abcd.exe /database=DeployAnywhere /add=C:\ProgramFiles\Altiris
I want to remove only "/database=DeployAnywhere" from the above string.Please let me know how to do string manipulation to achieve that.
Thanks.
Abdi
Loading
Sam HobbsPosted Apr 7, 2011, 9:11 PM
Perhaps you need to use string.Split(' ') to split the string by space characters. Or maybe you neeed to use String.IndexOf("/database=") and then String.IndexOf(' ') to find the end of the string. There are many possiblities.
VulpesPosted Apr 7, 2011, 1:55 PM