条件搜索并替换 C#
本文关键字:替换 搜索 条件 | 更新日期: 2023-09-27 18:36:29
您好,感谢您的关注。
编辑:我不是程序员,我对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 中找到。内容(谁包含一个变量字符串)字符串"No se exige",如果 Find 匹配,它将字符串值更改为数字 (0) 并返回它。如果没有,什么都没有改变。
因此,我只需要搜索字符串并将其替换为数字,如果它与字符串"No se exige"匹配。
非常感谢您努力阅读我的英语,希望您能帮助我:)
只需使用 Replace 方法:
args.Content = args.Content.Replace("No se exige", "0");