up vote 2 down vote favorite
share [g+] share [fb]

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.

link|improve this question

feedback

6 Answers

up vote 12 down vote accepted

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|improve this answer
feedback

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|improve this answer
Thats cool! Thanks – Brian G Oct 1 '08 at 10:25
feedback

You could also use

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

or

string trimmed = (dr as string).TrimStart('$');
link|improve this answer
feedback

Regex would work.

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

But there are multiple ways to solve this problem.

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
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
feedback

Your Answer

 
or
required, but never shown

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