Click here to Skip to main content
Click here to Skip to main content

C# Universal String Parsing Utility

By , 3 Aug 2012
 

The Problem

Parsing strings into other objects using tryParse() is a pain, and results in ugly code. I was sick and tired of seeing this kind of thing all over my projects:

var someStringThatShouldBeAnInt = "10";
int i = 0;
if(int.TryParse(someStringThatShouldBeAnInt, out i))
{
    //Continue on with things
}else
{
    //Complain about it
} 

The Desired Solution

Abstract this ugliness and replace it with something like this: 

var someStringThatShouldBeAnInt = "10";
var i = someStringThatShouldBeAnInt.Parse<int>();

The How

Seems like if I could dynamically call the tryParse() using Reflection I could write this once for every type that has the tryParse() available to it.

public static T Parse<T>(this string thingToParse)
{
    var retType = typeof(T);
    var tParse = retType.GetMethod("TryParse",
                                   BindingFlags.Public | BindingFlags.Static, null,
                                   new[] { typeof(string), retType.MakeByRefType() }, null);

    if (tParse != null)
    {
        var parameters = new object[] { thingToParse, null };
        var success = (bool)tParse.Invoke(null, parameters);
        if (success)
        {
            return (T)parameters[1];
        }
    }

    return default(T);
}

What If the type you are converting to doesn't implement tryParse()?

var csv = "1,2,3,4,5,6,7";
var list = someStringThatShouldBeAnInt.Parse<List<string>>();

Yea that’s not going to work. So let's give you the option to pass in your own converter.

public static T Parse<T>(this string thingToParse, Func<string, T> parser)
{
    return parser.Invoke(thingToParse);
}

Wow that’s even cleaner. Now we can do the following:

var csv = "1,2,3,4,5,6,7";
var list = csv.Parse<List<string>>(x => x.Split(',').ToList());

Yea that’s clean.

If you find this useful or see ways to improve please feel free to comment.

You can also find some other great topics over at my blog at: http://www.sympletech.com.

This utility can be found with many others here: https://github.com/sympletech/SympleLib.

License

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

About the Author

Sympletech
Software Developer Sympletech
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 3memberAbdul Quader Mamun13 Aug '12 - 16:36 
General[My vote of 2] May I suggest this ?memberPhilippe Bouteleux6 Aug '12 - 0:51 
Questionone question ... and now voted #4memberBillWoodruff3 Aug '12 - 16:03 
AnswerRe: one question ... and now voted #4memberSympletech3 Aug '12 - 18:33 
GeneralNot badmemberPIEBALDconsult3 Aug '12 - 11:42 
GeneralRe: Not badmemberSympletech3 Aug '12 - 18:37 
GeneralRe: Not badmemberPIEBALDconsult7 Aug '12 - 10:29 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 3 Aug 2012
Article Copyright 2012 by Sympletech
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid