c#搜索和替换

时间:2014-07-22 21:47:40

标签: c# php expression

我是C#的初学者。 我正在尝试使用一个小工具进行搜索和替换

我有这个输入:

"name"  => "Hello world",      

我想要这个输出:

'name'   =>__( 'Hello world','$Variable'),  

这是我的尝试:

 private string ReplaceBackgroundDirection(string Source)
        {
Source = Source.Replace("name", "name");
Source = Source.Replace("=>"+"", "=> __(");

1 个答案:

答案 0 :(得分:4)

我猜你想要返回被替换的字符串:

private string ReplaceBackgroundDirection(string Source)
 {

    return Source.Replace("\"", "'").Replace("=>","=>__(") + "'$Variable'),";
 }