vote up 2 vote down star

Can I use String.Format() to pad a certain string with arbitrary characters?

Console.WriteLine("->{0,18}<-", "hello");
Console.WriteLine("->{0,-18}<-", "hello");

returns 

->             hello<-
->hello             <-

I now want the spaces to be an arbitrary character. The reason I cannot do it with padLeft or padRight is because I want to be able to construct the format string at a different place/time then the formatting is actually executed.

--EDIT--
Seen that there doesn't seem to be an existing solution to my problem I came up with this (after Think Before Coding's suggestion)
--EDIT2-- I needed some more complex scenarios so I went for Think Before Coding's second suggestion

        [TestMethod]
    public void PaddedStringShouldPadLeft() {
        string result = string.Format(new PaddedStringFormatInfo(), "->{0:20:x} {1}<-", "Hello", "World");
        string expected = "->xxxxxxxxxxxxxxxHello World<-";
        Assert.AreEqual(result, expected);
    }
    [TestMethod]
    public void PaddedStringShouldPadRight()
    {
        string result = string.Format(new PaddedStringFormatInfo(), "->{0} {1:-20:x}<-", "Hello", "World");
        string expected = "->Hello Worldxxxxxxxxxxxxxxx<-";
        Assert.AreEqual(result, expected);
    }
    [TestMethod]
    public void ShouldPadLeftThenRight()
    {
        string result = string.Format(new PaddedStringFormatInfo(), "->{0:10:L} {1:-10:R}<-", "Hello", "World");
        string expected = "->LLLLLHello WorldRRRRR<-";
        Assert.AreEqual(result, expected);
    }
    [TestMethod]
    public void ShouldFormatRegular()
    {
        string result = string.Format(new PaddedStringFormatInfo(), "->{0} {1:-10}<-", "Hello", "World");
        string expected = string.Format("->{0} {1,-10}<-", "Hello", "World");
        Assert.AreEqual(expected, result);
    }

public sealed class PaddedStringFormatInfo : IFormatProvider, ICustomFormatter {

    public object GetFormat(Type formatType)
    {
        if (typeof(ICustomFormatter).Equals(formatType)) return this;
        return null;
    }

    public string Format(string format, object arg, IFormatProvider formatProvider)
    {
        if (arg == null)
            throw new ArgumentNullException("Argument cannot be null");

        string[] args;
        if (format != null)
            args = format.Split(':');
        else
            return arg.ToString();

        if (args.Length == 1)
            String.Format("{0, " + format + "}", arg);

        int padLength = 0;

        if (!int.TryParse(args[0], out padLength))
            throw new ArgumentException("Padding lenght should be an integer");
        switch (args.Length)
        {
            case 2://Padded format
                if (padLength > 0)
                    return (arg as string).PadLeft(padLength, args[1][0]);
                return (arg as string).PadRight(padLength * -1, args[1][0]);
            default://Use default string.format
                return string.Format("{0," + format + "}", arg);
        }
    }
flag

68% accept rate
I think you should make sure the string is not empty. Would it pass the test: string.Fomat("{0}", (PaddedString)"Hello"); ? – configurator Feb 12 at 14:15
Maybe it wouldn't. But it does in the new version :) – boris callens Feb 12 at 16:03
format is string) is not needed it will always evaluate as true. – Chris Marisic Jul 8 at 14:50
fixed . – boris callens Aug 13 at 11:52

4 Answers

vote up 2 vote down check

There is another solution.

Implement IFormatProvider to return a ICustomFormatter that will be passed to string.Format :

public class StringPadder : ICustomFormatProvider
{
  public string Format(string format, object arg,
       IFormatProvider formatProvider)
  {
     // do padding for string arguments
     // use default for others
  }
}

public class StringPadderFormatProvider : IFormatProvider
{
  public ICustomFormatProvider GetFormat(Type type)
  { 
     if (formatType == typeof(ICustomFormatProvider))
        return new StringPadder();

     return null;
  }
  public static readonly IFormatProvider Default =
     new StringPadderFormatProvider();
}

Then you can use it like this :

string.Format(StringPadderFormatProvider.Default, "->{0:x20}<-", "Hello");
link|flag
This one allows for multiple arguments to be formatted. Updated OP. – boris callens Feb 12 at 15:53
vote up 4 vote down

You could encapsulate the string in a struct that implements IFormattable

public struct PaddedString : IFormattable
{
   private string value;
   public PaddedString(string value) { this.value = value; }

   public string ToString(string format, IFormatProvider formatProvider)
   { 
      //... use the format to pad value
   }

   public static explicit operator PaddedString(string value)
   {
     return new PaddedString(value);
   }
}

Then use this like that :

 string.Format("->{0:x20}<-", (PaddedString)"Hello");

result:

"->xxxxxxxxxxxxxxxHello<-"
link|flag
vote up 1 vote down

Edit: I misunderstood your question, I thought you were asking how to pad with spaces.

What you are asking is not possible using the string.Format alignment component; string.Format always pads with whitespace. See the Alignment Component section of MSDN: Composite Formatting.

According to Reflector, this is the code that runs inside StringBuilder.AppendFormat(IFormatProvider, string, object[]) which is called by string.Format:

int repeatCount = num6 - str2.Length;
if (!flag && (repeatCount > 0))
{
    this.Append(' ', repeatCount);
}
this.Append(str2);
if (flag && (repeatCount > 0))
{
    this.Append(' ', repeatCount);
}

As you can see, blanks are hard coded to be filled with whitespace.

link|flag
I misunderstood the question... – configurator Feb 12 at 13:12
It is possible with numbers .. I would think it realy stupid if it is possible with numbers and not with strings. – boris callens Feb 12 at 13:13
How is it possible with numbers? – configurator Feb 12 at 13:31
I was kind of lying there. But you can do the following: Console.WriteLine("->{0:00000}<-", 12); That would give you ->00012<- – boris callens Feb 12 at 13:46
I see your edit there ;) Thanks for going the extra mile to check the internal code for me. Please have look at my solution in OP. Looks rather solid to me. – boris callens Feb 12 at 13:47
vote up 0 vote down

You could perhaps just use String.Replace() after the Format() call. However, if the Format() argument contains spaces, you'll just have to write the code to pad it yourself. It's a one-liner with the String(Char, Int32) constructor.

link|flag
I fear the real case is a bit more complicated. I get a format string in a foreign format, I convert this format to a .net format string. This .net format string is saved and used later in a String.Format() call. The creation and execution of the format should be decoupled.. – boris callens Feb 12 at 13:25

Your Answer

Get an OpenID
or

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