条件搜索和替换C#

时间:2012-06-08 08:59:23

标签: c# search replace conditional-statements

您好,感谢您的关注。

编辑:我不是程序员,我几乎不知道C#或任何其他语言,对不起这个问题,我一直在寻找解决方案,但没有任何作用。不管怎样,谢谢你对我提问。

到目前为止,我得到了这段代码:

using System;
using VisualWebRipper.Internal.SimpleHtmlParser;
using VisualWebRipper;
public class Script
{

    public static string TransformContent(WrContentTransformationArguments args)
    {
        try
        {
            //Place your transformation code here.
            //This example just returns the input data

            return args.Content;
        }
        catch(Exception exp)
        {
            //Place error handling here
            args.WriteDebug("Custom script error: " + exp.Message);
            return "Custom script error";
        }
    }
}

我需要用C#做一个条件,让我在* args.Content (包含变量字符串)中找到字符串“No se exige”,如果查找匹配它将字符串值更改为数字(0)并返回它。如果不是没有变化。

所以,我只需要搜索并将字符串替换为数字,如果它与字符串“No se exige”匹配。

非常感谢您努力阅读我的英语,希望您能帮助我:)。

1 个答案:

答案 0 :(得分:0)

只需使用Replace方法:

args.Content = args.Content.Replace("No se exige", "0");