I have 2 Strings
1st:
String str=",1,2,3,4,5";
2nd:
String num=",3";
I want to do like if "str" contain "num", then it will remove the "num" from "str". Which mean the output will be: ,1,2,4,5
What should I do?
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Even easier: use the |
|||||
|
str.Replace? – LittleBobbyTables Jul 30 '12 at 13:34