It works !! :P
Thanks Friend :P
Best regards,
Ricardo Figueira
-Original Message-
From: Patrick Steele [mailto:[EMAIL PROTECTED]]
Sent: sexta-feira, 7 de Junho de 2002 16:35
To: [EMAIL PROTECTED]
Subject: Re: [DOTNET] Translate C# to VB
Instead of 'New MatchEval
CTED]]
Sent: Friday, June 07, 2002 11:01 AM
To: [EMAIL PROTECTED]
Subject: [DOTNET] Translate C# to VB
Friends,
How can i translate this to VB.NET ? :
private string processPropertiesTag(Match m)
{
string pattern = @"\s*[^=\s]*=""[^""]*""";
Friends,
How can i translate this to VB.NET ? :
private string processPropertiesTag(Match m)
{
string pattern = @"\s*[^=\s]*=""[^""]*""";
string newHtml = Regex.Replace(m.ToString(), pattern, new
MatchEvaluator(processPageProperty));
return newHtml;
}
I have tried this B