Hi,
I've a input string:
"risk management, portfolio management, investment planning"
How do I convert this string into:
"risk management" + "portfolio management" + "investment planning"
Thanks.
|
1
|
Hi, I've a input string: "risk management, portfolio management, investment planning" How do I convert this string into: "risk management" + "portfolio management" + "investment planning" Thanks.
|
||||||
|
|
|
Split and Trim
or
and
|
||||||
|
|
|
Use the
Now you have a string array of each comma separated value. To remove the spaces, use the |
||||
|
|
|
If you want to split the input, you can use string.Split, using comma as a delimiter or , even better ", " for taking into account the space after comma,
However, you can be wanting to replace the comma inside the string for a plus sign, this is how you could be achieving that also:
|
||||||||||
|
|
|
HTH, Kent |
||
|
|
|
|
It actually looks like you're trying to perform a split, rather than concatenation. If you're looking to take that input string and convert it into three strings containing "risk management", "portfolio management", and "investment planning", then use |
||
|
|
|
|
You can't use
|
||
|
|
|
|
It is not very clear what you mean. If you need to access the CSV values then this will output each value separately...
|
||
|
|
|
|
Your question is not clear on whether you want to replace the Here are the 2 possibilities:
|
||
|
|
|
|
Reply to Jhonny D. Cano (Sorry, don't have 50 rep for a comment.) Your first recommendation
Doesn't work because you can't split on a string. The closest possible overload is a char[], so you would have to write it as...
|
||
|
|