Tagged Questions

1
vote
5answers
131 views

Python check for valid email address?

Is there a good way to check a form input using regex to make sure it is a proper style email address? Been searching since last night and everybody that has answered peoples questions regarding this ...
1
vote
2answers
64 views

Regex is not a valid type or namespace C#

I'm trying to add this snippet to my code: public string Highlight(string InputTxt) { string Search_Str = txtSearch.Text.ToString(); // Setup the regular expression and add the Or operator. ...
1
vote
2answers
1k views

How to check if the input string is a valid VB string?

We know that VB string start and end with double quotes " " So we have to use "" if we want " in VB string. I wonder if there is a regular expression pattern which will match VB string?. Thanks.