vote up 11 vote down star
2

Suppose I have a string, for example,

string snip =  "</li></ul>";

I want to basically write it multiple times, depending on some integer value.

string snip =  "</li></ul>";
int multiplier = 2;

// TODO: magic code to do this 
// snip * multiplier = "</li></ul></li></ul>";

EDIT: I know I can easily write my own function to implement this, I was just wondering if there was some weird string operator that I didn't know about

flag

you could just use a loop – jmein Feb 10 at 16:00

9 Answers

vote up 20 vote down check

Unfortunately / fortunately, the string class is sealed so you can't inherit from it and overload the * operator. You can create an extension method though:

public static string Multiply(this string source, int multiplier)
{
   StringBuilder sb = new StringBuilder(multiplier * source.Length);
   for (int i = 0; i < multiplier; i++)
   {
       sb.Append(source);
   }

   return sb.ToString();
}

string s = "</li></ul>".Multiply(10);
link|flag
1  
Just where I was going! You could probably optimize by using source.Length * multiplier in the StringBuilder ctor – Marc Gravell Feb 10 at 16:00
Marc's comment was just where I was going :) – Jon Skeet Feb 10 at 16:01
1  
You need (source.Length * multiplier), not just (multiplier) – Marc Gravell Feb 10 at 16:02
Marc: Are you sure that it means characters and not items? – DrJokepu Feb 10 at 16:04
Sorry, apparently it is characters. – DrJokepu Feb 10 at 16:05
show 3 more comments
vote up 5 vote down

You'd have to write a method - of course, with C# 3.0 it could be an extension method:

public static string Repeat(this string, int count) {
    /* StringBuilder etc */ }

then:

string bar = "abc";
string foo = bar.Repeat(2);
link|flag
vote up 4 vote down

Note that if your "string" is only a single character, there is an overload of the string constructor to handle it:

int multipler = 10;
string TenAs = new string ('A', multipler);
link|flag
vote up 2 vote down
string Multiply(string input, int times)
{
     StringBuilder sb = new StringBuilder(input.length * times);
     for (int i = 0; i < times; i++)
     {
          sb.Append(input);
     }
     return sb.ToString();
}
link|flag
vote up 1 vote down

I'm with DrJokepu on this one, but if you did want to cheat using a built-in function you can do something like:

string snip = "</li></ul>";
int multiplier = 2;

string result = string.Join(snip, new string[multiplier + 1]);

Personally I wouldn't bother though - using an extension method is a much better technique.

link|flag
vote up 1 vote down

Just for the sake of completeness - here is another way of doing this:

public static string Repeat(this string s, int count)
{
    var _s = new System.Text.StringBuilder().Insert(0, s, count).ToString();
    return _s;
}

I think I pulled that one from Stack Overflow some time ago, so it is not my idea.

link|flag
vote up 0 vote down

not in C#. You can do it in python like so : mystring*n

link|flag
vote up 0 vote down

Okay, here's my take on the matter:

public static class ExtensionMethods {
  public static string Multiply(this string text, int count)
  {
    return new string(Enumerable.Repeat(text, count)
      .SelectMany(s => s.ToCharArray()).ToArray());
  }
}

I'm being a bit silly of course, but when I need to have tabulation in code-generating classes, Enumerable.Repeat does it for me. And yeah, the StringBuilder version is fine, too.

link|flag
vote up -2 vote down

Sorry, but no, there isn't.

link|flag
lol. What kind of answer is this? not even any suggestions? – Stimul8d Nov 18 at 11:59
He said he knew he could write his own code, he was asking if there was something built in, and no, there isn't. Do you mean I should write the code he said he already knew how to write? – Lasse V. Karlsen Nov 18 at 18:22

Your Answer

Get an OpenID
or

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