2014年10月25日土曜日

文字列内のカンマを乗り除く方法

文字列から任意の文字を取り除くには、Replace メソッドを用いて取り除く対象の文字と空文字("")を引数に指定します。

// コンマを含む文字列
string valWithComma = "13,000";
// Replace メソッドでコンマを空文字に置き換え
string valWithoutComma = valWithComma.Replace(",","");

How to remove commas in a string in C# ??
http://bytes.com/topic/net/answers/650947-how-remove-commas-string-c

0 件のコメント:

コメントを投稿