|
|
Browse by Tags
All Tags » (?!)
-
Hi,
Objective : match all URL except http://test/admin(.*) and http://test/login.aspx
Test case :
1. http://test/admin
2. http://test/admin/
3. http://test/admin_client/
4. http://test/admin/login.aspx
5. http://test/login.aspx
6. http://test/toto.aspx
7. http://test/titi/tata.aspx
Expected result : only 6 and 7 URL must ...
-
I'm a newbee and hope someone will take pity on me. In Visual Studio 2008, I need to find all line that have the whole word FROM and does NOT contain the string (WITH (NOLOCK)). I'd settle for it not containing the work WITH. All words are case insensitive.
Select * FROM tblRequests
Select * from tblRequests WITH ...
-
Hi all, I amtrying to create an email parser in C#. I want to extract mail body from the entire raw email string. To separate message footer from message body, I inserted a GUID string in between them. So a sample email may like ...
-
Hello,
I need help!
I got this password validation expression (?=.{6,})(?=(.*\d){1,})(?=(.*\W){1,}) and should add additional "rule".
The rules in this expression are: the pwd has to be at least 6 chars long, contain at least one digit and contain at least one special character.
The "rule" or expression I should add, should ...
-
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 ...
-
Hello,
I want to find lines not containing certain words.
My text:
This is first line
And this is second line
I am third line...
For example my word is "second", so regex schould matches only 1 (This is first line) and 3 (I am third line...) line.
I'm programming in JAVA (java.util.regex.*).
Thanks for help!
-
Good morning, I have a string : aa.98 sdfad bb.98 sadf cc.98 sadf .... I need to write it now, to find out. not in front of 98, or aa bb, all other characters. I now is : (?!aa|bb) \.98 results in a match. Please help, I come from China! English well, I do not know if you can understand what I ...
|
|
|