Click here to Skip to main content
15,891,136 members
Articles / Programming Languages / C#
Article

Custom String Formatter

Rate me:
Please Sign up or sign in to vote.
4.50/5 (3 votes)
24 Jul 2011CPOL2 min read 27.8K   544   12   3
Custom formatting of String datatype in .NET based on intuitive formatting pattern
Image 1

Introduction

I had a requirement to format country specific data strings like national id, phones and postal codes. .NET Framework provides several formatting options for numbers and dates but formatting options for strings are limited. The options available to format various data types using string.Format()with lots of examples can be found here. Another way to format strings is to use regular expression such as follows:

C#
Regex.Replace("1112224444", @"(\d{3})(\d{3})(\d{4})", "$1-$2-$3"); 

A good explanation for formatting strings using regular expression can be found here. Although this provides a flexible way to format string data, the regular expression can easily get quite complicated and especially if these patterns are going to be provided by the end users, it isn't too user friendly to specify the format using regular expressions.

This article presents a way to format strings by specifying format patterns in an intuitive way using specifiers for digits and letters. Besides invoking the format method directly, the source code includes a way to invoke it via String extension method and via a custom formatter in string.format().

Using the Code

Format can be specified using # to represent a digit and * to represent a letter. If a string needs to have these characters, \ can be used as an escape character. There are no other special characters and all other characters are displayed as is in output.

The source includes a class CustomStringFormatter that exposes formatting capability in multiple ways:

C#
//Call the Format method directly
string formattedString = CustomStringFormatter.Format
			(inputString, formattingPattern, out cleanedInput);
C#
//Call Format via String extension method
string formattedString = inputString.FormatString(formattingPattern, out cleanedInput);
C#
//Call Format via custom formatter
string formattedString = string.Format(new CustomStringFormatter(), 
			"{0:" + formattingPattern + "}", inputString);

Some examples are as follows:

InputFormatOutput
1234567890(###) ###-####(123) 456-7890
87712345(06) ## ## ## ##(06) 87 71 23 45
1234XY#### **1234 XY
XX-123(MN)XX\\###**-\#\*XX\123MN-#*

Points of Interest

Format picks the characters matching the digit and letter pattern from the input string and takes the formatting character from the format string. In case the input string has extra characters, only the first matching characters are taken, rest all characters are ignored. It’s an error when input string doesn't contain enough characters matching the format digit/letter pattern and a blank string is returned as output in such cases. Additionally, the data part extracted from the input is available through an output parameter.

Formatting a string mainly involves a validation setup where you would want to ascertain 'what' needs to be formatted and then format it using formatting characters indicating the 'how-to-format' of formatting. This is a simplified case where both the steps are specified using one format, allowing only a loose validation before input is formatted. It would however be possible to first validate the input based on a validation pattern (thus allowing a more rigorous validation), extract the matching part and then apply the formatting pattern on that.

History

  • 24th July, 2011: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionPlease show and explain the code Pin
PIEBALDconsult24-Jul-11 17:10
mvePIEBALDconsult24-Jul-11 17:10 
GeneralMy vote of 4 Pin
Wooters24-Jul-11 17:10
Wooters24-Jul-11 17:10 
GeneralMy vote of 4 Pin
GregStevens24-Jul-11 12:40
GregStevens24-Jul-11 12:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.