C#按位置替换字符串

时间:2012-06-15 12:43:16

标签: c# string replace

我正在尝试替换字符串中的逗号。

例如,数据是零件的货币值。

EG。 453,27这是我从SAP数据库获得的值

我需要将逗号替换为句点以将值修复为正确的数量。现在有时,它将成千上万。

EG。 2,356,34这个值需要是2,356.34

所以,我需要帮助操作字符串来替换最后两个字符的逗号。

感谢您的帮助

6 个答案:

答案 0 :(得分:1)

string a = "2,356,34";
int pos = a.LastIndexOf(',');
string b = a.Substring(0, pos) + "." + a.Substring(pos+1);

你需要为字符串中没有逗号的情况添加一些检查,但这是核心代码。

你也可以用正则表达式来做,但这很简单且效率也很高。

答案 1 :(得分:0)

快速谷歌搜索给了我这个:

void replaceCharWithChar(ref string text, int index, char charToUse)
{
    char[] tmpBuffer = text.ToCharArray();
    buffer[index] = charToUse;
    text = new string(tmpBuffer);
}

所以你的“charToUse”应该是'。'。如果它总是从结尾2个字符,你的索引应该是 text.length - 3.

http://www.dreamincode.net/code/snippet1843.htm

答案 2 :(得分:0)

使用此:

string str = "2,356,34";
string[] newStr = str.Split(',');
str = string.Empty;
for (int i = 0; i <= newStr.Length-1; i++)
{
    if (i == newStr.Length-1)
    {
        str += "."+newStr[i].ToString();
    }
    else if (i == 0)
    {
        str += newStr[i].ToString();
    }
    else
    {
        str += "," + newStr[i].ToString();
    }
}
string s = str;

答案 3 :(得分:0)

如果我理解正确,您总是需要用句号替换最后一个逗号。

public string FixSAPNumber(string number)
{
    var str = new StringBuilder(number);
    str[number.LastIndexOf(',')] = '.';
    return str.ToString();
}

答案 4 :(得分:0)

string item_to_replace = "234,45";

var item = decimal.Parse(item_to_replace);

var new_item = item/100;

//if you need new_item as string 
//then new_item.ToString(Format)

答案 5 :(得分:-1)

string x = "2,356,34";
if (x[x.Length - 3] == ',')
{
    x = x.Remove(x.Length - 3, 1);
    x = x.Insert(x.Length - 2, ".");
}