Regular expression to check special character
I need to check whether password has at least 6 characters with at least 1 letter and one special character. I am checking the condition...
View ArticleUrl rewriting rule
Hello there, I need some clever regular expression writing in IIS7 to redirect traffic from one site to another, the pages are similar in structure but information needs re-writing. Here's an example:...
View ArticleCan anybody explain how this Regex works.
Hi I'm using C# and I have the regex below to split words and not split a string ".. .." instead take the whole string as on item to a List. Example: text="all "1 dl"" after split all[0]="all"...
View ArticleHow to regex this
Hello, Why\\begin\{verbatimtab\}[\n.]*\\end\{verbatimtab\} does not match\begin{verbatimtab} 10563235 \end{verbatimtab} Any help appreciated,Greetings - Jacek
View ArticleSomething I just learned, with IP addresses
So here I was, trying to figure out why I was having problems with my ASP RegEx validator control. The objective was to match to an IP address, but to allow it to end in "*" in the final octets (that...
View ArticleTrying to match non-quoted sections
Given the name of an SQL table, I am looking to add quotes as necessary (with an loose definition of "necessary"). With SQL Server, the parts of the name should be wrapped in brackets ([ and ]), MySQL...
View ArticleEither start or not a "d"
I try to get the date number format from a date format string. The date number format is - if present - either a single d or a double d. But the whole string can contain a place holder for the dayname...
View Articlecan someone tell me whats wrong with this expression?
pretty new to regex. this is a great article. can someone tell me whats wrong with my expression? I'm using this from C#. I'm getting the response from a blog in a malformed xml format. Need to...
View ArticleRegEx Problem
I have this string: var Line = "Dev: 0 Model: TOSHIBA MK3265GSX Serial: 20FDF20WS FW: GJ002H STW: 0 MaxLBA: 625142447 FDESUPPORTED: 0 PREBOOT: 0 DRIVETRUSTENABLED: 0 DRIVETRUSTSUPPORTED: 0 w128: 41...
View ArticleSwap two values based on pattern
To cut down the detail, here is my input: [char](15) [varchar](23) So the first field is a square bracket '[', a string and a close bracket ']'. Next is a regular bracket '(', a number, and a close...
View ArticleRename File Name Help
Hi, I have file lectures and I would like to change the nameing convention. Currently, it has the format of {detail -} subject - author.wmv I would like to rename with the nameing convention of author...
View Article[SOLVED] C Code Parsing
I'm trying to write a scanner using Flex. The problem is that one of my regex's works in the Visual Studio Find dialog, but not in Flex when tested on the same file! By "not working" I mean that it...
View Articlehow to make username regex for windows forms
My friend is making windows form and he needs to vlidate a username which will be a minimum of 4 characters and maximum of 15 characters long. It will also allow hyphens and underscores as well as dots...
View ArticleExtract tag within pre tag
Hi, I'm going nuts. I've got heaps of html-pages, that have to be adjusted, since there are "a href" tags within "pre" "/pre" code, that have to be removed. Some code like this:...
View ArticleRegex getting special caracter
I have a string like: string s1 = "dog().Cat(\"Happy\")"; I want to: 1) count the number of round brackets '(', I expect as result 2 2) get the text inside, I expect "\"Happy"\", which appear in...
View Articlepart of string before a match
I have a path and I want to get the part of a path before my match:string s1= @"c:\temp\lev1\lev2\lev3\MYWORD\lev5\lev6"; string mtch ="MYWORD" knowing s1 and mtch I want to get the part of path...
View Articlehow to make a white space regex
sir i am doing a project, i want to match a string with regex which will match the whole string and it dosent allow two white spaces concerrently on after the other and also it dosent allow white...
View ArticleAdvanced practice on regexp
Hi there, I've just read the great "30 Minute Regex Tutorial", by Jim Hollenhorst. A brilliant piece of writing. Congratulations, Jim. Expresso is also a really superb tool. I would need to go deeper...
View ArticleMy co-worker came up with a regex that validate dates... and it even...
please, tell me this has a bug:...
View ArticleRegular Expression to allow combination of character with digits only
I want Regular Expression or any other validation for textbox to allow combination of character with digits only.. which can not be allow only digits or only character.
View Article