-4

こんにちは、お気遣いありがとうございます。

編集:私はプログラマーではなく、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";
        }
    }
}

* args.Content (可変文字列を含む) で文字列"No se exige"を検索できる C# で Condition を実行する必要があり、検索が一致する場合は文字列値を数字 (0) に変更して返しますそれ。そうでなければ何も変わりません。

したがって、文字列「No se exige」と一致する場合は、文字列を検索して数字に置き換えるだけです。

私の英語を一生懸命読んでくれてありがとう、助けてくれることを願っています:)

4

1 に答える 1

0

Replaceメソッドを使用するだけです。

args.Content = args.Content.Replace("No se exige", "0");
于 2012-06-08T09:04:32.077 に答える