vote up 2 vote down star

I have a DataRow and I am getting one of the elements which is a Amount with a dollar sign. I am calling a toString on it. Is there another method I can call on it to remove the dollar sign if present.

So something like:

dr.ToString.Substring(1, dr.ToString.Length);

But more conditionally in case the dollar sign ever made an appearance again.

I am trying to do this with explicitly defining another string.

flag

54% accept rate

6 Answers

vote up 10 vote down check

Convert.ToString(dr(columnName)).Replace("$", String.Empty)

-- If you are working with a data table, then you have to unbox the value (by default its Object) to a string, so you are already creating a string, and then another with the replacement. There is really no other way to get around it, but you will only see performance differences when dealing with tens of thousands of operations.

link|flag
vote up 3 vote down

You could also use

string trimmed = (dr as string).Trim('$');

or

string trimmed = (dr as string).TrimStart('$');
link|flag
vote up 4 vote down

If you are using C# 3.0 or greater you could use extension methods.

public static string RemoveNonNumeric(this string s)
{
   return s.Replace("$", "");
}

Then your code could be changed to:

((String)dr[columnName]).RemoveNonNumeric();

This would allow you to change the implementation of RemoveNonNumeric later to remove things like commas or $ signs in foreign currency's, etc.

Also, if the object coming out of the database is indeed a string you should not call ToString() since the object is already a string. You can instead cast it.

link|flag
Thats cool! Thanks – Brian G Oct 1 '08 at 10:25
vote up 0 vote down

Why don't you update the database query so that it doesn't return the dollar sign? This way you don't have to futz with it in your C# code.

link|flag
The DB query is a API controlled by a third party that has thousands of customers. I guess i should have noted that though. – Brian G Sep 30 '08 at 20:33
Because storing invalid data is, well, wrong. – Abyss Knight Sep 30 '08 at 20:38
vote up 2 vote down

dr[columeName].ToString().Replace("$", String.Empty)

link|flag
vote up 1 vote down

Regex would work.

Regex.Replace(theString, "$", "");

But there are multiple ways to solve this problem.

link|flag

Your Answer

Get an OpenID
or

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