Categories: Documents, RegEx, XNA, 3.0
Apr
13
In Part 2, I will:discuss the patterns and practices available to use for Rewriting.show several examples of RegEx patterns and some real world web addresses to be validated against.show some visible benefits and flaws to the RegEx design and some possible ways around the flaws. more »
Apr
12
In this post, i will be talking about the tools to use for Rewriting (or Filtering) URLs in ASP. The key to note is that i am using 3.5 Framework but the Rewriting library is utilizing 1.1 Framework for the codebase. more »
Sep
22
For a simple password verification expression here is one for you:^(\w|\d)([^\s]{3,13})(\w|\d)$Validates that the first character is a letter or number ^(\w|\d)Validates that the body has any character except white-space characters ([^\s]… more »
Sep
14
Well for all of you interested here is my first URI validating Regex.(http:\/\/)+([\w\d\.]+([\w]{2,6})?)one flaw is that it only validates the URI notation ( http:// ) and the TLD notation ( .us, .uk, .travel, etc.) more »
Sep
14
Well looks like i will be starting the arduous journey of Regular Expressions. Starting to bulid a ASP Wiki, and need to incorporate a RegEx validation to keep the nice people that like injecting SQL attacks into sites. more »
Recent comments