ここにこのコードがあり、args.Content (入力データ) を数字のみで返し、残りの文字を削除する必要があります。私は正規表現で多くのことを試してきましたが、うまくいきませんでした。私は C# についてほとんど何も知らないので、この Web サイトのプログラマーの助けが本当に必要です。
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";
}
}
}
あなたが助けてくれることを願っています