|
|
Browse by Tags
All Tags » C# » .net
Showing page 1 of 2 (11 total posts)
-
Hi I need a regular expression for email validation, it should excldue the email addresses with the following special characters.
\|/,;<> and spaces.
The rule for validating the email is : Email address must contain a single @, one or more periods, and any standard characters with the exception of spaces and the ...
-
Hi ppl,
I would like to ask about finding semicolons (;) I'm using C#.NET.
Let's say we have this input in PL/SQL (Oracle)
1. x:='deneme';
2. y:=a*b; z:=d+e;
3. str := 'dene' || 'me';
4. final := 'senten' || ';' || 'ce';
5. last := 'sen' || ';' || 'ten' || ...
-
I'm trying to create a regex that has the following requirements:
1. must be at least 7 characters in length
2. must contain at least 1 digit
3. must contain at least 1 lowercase letter
4. must contain at least 1 uppercase letter
5. must contain at least one of the following symbols: = ! $ % ^ & +
6. It must reject any word that ...
-
I need a regex that matches a string containing 6 alpha, 2 alphanumeric and 3 OPTIONAL alphanumeric, upper and lower case. I need this for validating strings in ASP.net 2.
Eg:.
abcdefab345
abcdef22
abcdef5e
abcdef3ee5e
abcdef55asd
abcdefr5
and should not match
abcs
abcd34d3
abcdef23f
abcdefd
abcdef
-
hey all
i am trying to get the input tags that their type=text from a source code of a page.
i was using this ...
-
Hi All, I have to write regular expression for one of my application. Numeric and few special characters (as mentioned below) are allowed as input. Special Characters Examples ; 70100;70200 * 701*;702* ? ??1*;??2* # (Must be First ...
-
I am trying to construct a RE in C# that will match everything within <tr></tr> tags if they contain an <a> tag with an href containing the word "match". For instance:
<tr><td><a href="/match/index.htm">link</a></td></tr> (should match)
<tr><td><a ...
-
Hi there,
I hope someone can help, cause I'm lost...
First of all I am working with C# and I have a (legacy) Regex I need to adjust. Actually I am using Regex.Replace to match an expression in a string and Replace it.
My current Regex.Replace looks like this:
query = Regex.Replace(query, ...
-
OK. Stick with me here. It is going to take me a few to explain this.
I am writing a small application in VB.NET. The ultimate task is to make a web browser, within a web browser. Basically, You open IE, FireFox, Safari, or whatever browser you like and go to the web application I am building. At the top of the web page, I have a tool bar, ...
-
Hi all,
I am working on a project to convert an SQL Server database to Unicode. I need to write a routine that will change stored procedures and functions. I would like a regex pattern to match all occurrences of CHAR, VARCHAR, and TEXT and then replace them with NCHAR, NVARCHAR, and NTEXT. The expression must ignore those instances ...
1
|
|
|