vote up 0 vote down star
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.

flag

8% accept rate
Ambiguous questions - gotta love 'em. – Kent Boogaart Mar 30 at 16:34
Wouldn't it be string decatenation in this case? :-) – Brian Knoblauch Mar 30 at 16:55
Someone needs help on their homework. shakes head – John Kraft Mar 30 at 18:53

9 Answers

vote up 17 vote down check

Split and Trim

 // include linq library like this:
 // using System.Linq;
 // then

"test1, test2".Split(',').Select(o => o.Trim());

or

"test1, test2".Split(',').Select(o => o.Trim()).ToArray(); // returns array

and

"test1, test2".Split(',').Select(o => "\"" + o.Trim() + "\"")
.Aggregate((s1, s2) => s1 + " + " + s2);

// returns a string: "test1" + "test2"
link|flag
thanks a lot...this works greatttttttttttt!:-) – Jimmy Mar 30 at 17:44
am now getting the output as: "\"tax accounting\" + \"assurance services\" + \"tax audit\" + \"internal audit\" + \"lean accounting\" + \"cost accounting\"...can i get rid of the back slashes over here? – Jimmy Mar 30 at 18:04
back slashes could be in a quick property view, i don't think they exist in an actual value – Koistya Navin Mar 30 at 18:16
vote up 6 vote down

Use the Split() method:

string[] phrases = s.Split(',');

Now you have a string array of each comma separated value.

To remove the spaces, use the Trim() method on each string (thanks John Feminella)

link|flag
That works, but he'll have leading spaces at the beginning of every item after the first. – John Feminella Mar 30 at 16:36
Thanks... Updated post – Andrew Flanagan Mar 30 at 17:06
vote up 2 vote down

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,

string[] array = inputString.Split(", ");

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:

inputString = inputString.Replace(", ", "\" + \"");
link|flag
Ummm +1? Amazing how the only correct answer gets downvoted... – John Rasch Mar 30 at 16:37
The do not like "smarty pants" here. – alex Mar 30 at 16:38
(based on the ambiguity of the question of course) – John Rasch Mar 30 at 16:38
I'm, amazed of that also, tx for upvoting – Jhonny D. Cano -Leftware- Mar 30 at 16:39
Well, I shouldn't say "only"... since we can't read his mind :) - but based on the specifications this is "most likely" what he wants, not a "smarty pants" answer... – John Rasch Mar 30 at 16:42
show 4 more comments
vote up 3 vote down
var results = from s in string.Split("risk management, portfolio management, investment planning", new char[] { ',' })
              select s.Trim();

HTH, Kent

link|flag
vote up 1 vote down

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 string.Split(inputString, ','), then trim each string from the resulting array when you use it.

link|flag
vote up 3 vote down

You can't use String.Split() in your case because you have a comma, then a space. So your strings will look like { "risk management", " portfolio management", " investment planning" }. Instead, use Regex.Split:

string[] investmentServices = Regex.Split(inputString, ", ");
link|flag
vote up 1 vote down

It is not very clear what you mean. If you need to access the CSV values then this will output each value separately...

string input = "risk management, portfolio management, investment planning";
string[] words = text.Split(new Char[] {','});
foreach(string word in words)
{
  Console.WriteLine(word.Trim());
}
//risk management
//portfolio management
//investment planning
link|flag
vote up 2 vote down

Your question is not clear on whether you want to replace the ',' for '+' or just a simple split.

Here are the 2 possibilities:

string s = "risk management, portfolio management, investment planning";

string transformedString = s.Replace(", ", "\" + \"");

string[] parts = s.Split(new [] {", "}, StringSplitOptions.None);
link|flag
vote up 0 vote down

Reply to Jhonny D. Cano (Sorry, don't have 50 rep for a comment.)

Your first recommendation

string[] array = inputString.Split(", ");

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...

string[] array = inputString.Split(", ".ToCharArray());

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.