vote up 1 vote down star

I am constantly forgetting what the special little codes are for formatting .NET strings. Either through ToString() or using String.Format(). Alignment, padding, month vs. minute (month is uppercase M?), abbreviation vs. full word, etc. I can never remember.

I have the same problem with regexes, but luckily there's Expresso to help me out. It's awesome.

Is there a tool like Expresso for experimenting with formatted strings on standard types like DateTime and float and so on?

flag

77% accept rate

5 Answers

vote up 1 vote down check

PowerShell works great for testing format strings. From PowerShell you can load your assembly and work with the objects and methods you want to test. You could also just create a string on the command line and test out different formatting options.

You can use the static method from the string class:

$teststring = 'Currency - {0:c}.  And a date - {1:ddd d MMM}.  And a plain string - {2}'
[string]::Format($teststring, 160.45, Get-Date, 'Test String')

Or PowerShell has a built in format operator

$teststring = 'Currency - {0:c}.  And a date - {1:ddd d MMM}.  And a plain string - {2}'
$teststring -f 160.45, Get-Date, 'Test String'
link|flag
vote up 1 vote down

You could use the Snippy plugin for Reflector to run little code snippets.

link|flag
vote up 2 vote down

http://www.sellsbrothers.com/tools/#FormatDesigner

link|flag
Pretty close but it's lacking the alignment stuff that you get outside of ToString(). I like that it's updated in real-time though. – Scott Bilas Jan 9 '09 at 1:22
vote up 3 vote down

Snippet Compiler is a great tool in general for quick small app testing. Instead of cluttering your Visual Studio with a million ConsoleApplication79 projects, just use this. I have it and use it constantly.

link|flag
vote up 0 vote down

Here's two links for you:

  1. Silverlight based tool, to test them dynamically
  2. General reference to format strings
link|flag

Your Answer

Get an OpenID
or

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