I hired a coder to code me something in Regex. The issue was that he coded it in Visual Basic and I need it in C#.
I tried using a converter but it didnt fix the issue.
Mind helping me convert the following Regex to C#? The issues are with GetBetween and Strings Thanks:
string iamtwit = ss("http://www.mailinator.com" + GetBetween(GetBetween(iamtwit1, matches.ToString(), "</a>"), "<a href=", ">"));
and
MessageBox.Show(GetBetween(matches1.ToString(), "<a href=\"", Strings.Chr(34)));
Here is the original code:
Dim iamtwit As String = ss("http://www.mailinator.com" & GetBetween(GetBetween(iamtwit1, matches.ToString, "</a>"), "<a href=", ">"))
MsgBox(GetBetween(matches1.ToString, "<a href=""", Chr(34)))
The error messages I am getting are:
The name ‘GetBetween’ does not exist in the current context
The name ‘Strings’ does not exist in the current context
1 Answer