Upcoming Regular Expressions stories

Converting-from-Word-to-HTMLXHTML(codemine.net)

submitted by skpananghatskpananghat(184) 11 months, 19 days ago

The below C# .net code helps you to clean you html which you have copied from MS word. This is very helpful when you convert word document to pure HTML or XHTML read more...

add a comment |category: |Views: 4

tags: another

When to use an when not to use Regular Expressions(blog.regexhero.net)

submitted by BucketSoftBucketSoft(324) 1 year, 4 months ago

For the most part regular expressions are there to save you time from parsing text the hard way. But if you're spending more time bending regular expressions to your will to accomplish something that could be done more easily and efficiently with procedural code, then that kind of defeats the purpose. read more...

add a comment |category: |Views: 11

tags: another

Regular expressions with MSBuild. Reading version numbers...(instantiate.co.nz)

submitted by lukus7lukus7(135) 1 year, 7 months ago

I show how I recently used the MSBuild community tasks and a regular expression to read version numbers out of the AssemblyInfo.cs file into MSBuild properties. read more...

1 comment |category: |Views: 303

tags: another

parse and extract proxies on the fly(code2code.info)

submitted by quachnguyenquachnguyen(384) 1 year, 11 months ago

In this blog i will show you how to parse and extract proxies on the fly using HtmlAgilityPack library and Regular Expression, Let’s get started read more...

add a comment |category: |Views: 7

tags: another

Generate Matches for Regular Expressions Using Rex(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 2 years ago

Regular expressions are one of the more cryptic tools developers utilize in every day work. Sure, just about anyone understands that ^\d\d$ matches a line containing exactly two digits, but you may need a cheat sheet to figure out a regex like \b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b. read more...

add a comment |category: |Views: 15

tags: another

Code Hinting for Regular Expressions (an Intellisense-like feature)(blog.regexhero.net)

submitted by BucketSoftBucketSoft(324) 2 years, 1 month ago

It's been a long time in the making but code hinting is here. I took a lot of inspiration from Intellisense. But as I'm sure you know, Intellisense doesn't provide any help when writing regular expressions. read more...

add a comment |category: |Views: 38

tags: another

Converting BBCode into HTML using C#(cyotek.com)

submitted by cyotekcyotek(155) 2 years, 2 months ago

A simple to use class library for converting text containing BBCode used by popular forum systems into HTML using C#. read more...

add a comment |category: |Views: 72

tags: another

Regular Expressions. Remember it, write it, test it.(outcoldman.ru)

submitted by outcoldmanoutcoldman(100) 2 years, 2 months ago

I should say that I’m fan of regular expressions. Whenever I see the problem, which I can solve with Regex, I felt a burning desire to do it and going to write new test for new regex. Previously I had installed SharpDevelop Studio just for good regular expression tool in it. But now I’m a little wiser, and for each Regex I write a separate test. Now I want to show you little samples of regular expressions and want to show you how to test these samples. read more...

add a comment |category: |Views: 9

tags: another

Zip Postal code RegEx validation for France Italy Germany and India(software-wikipedia.blogspot.com)

submitted by kzvikzvi1kzvikzvi1(80) 2 years, 3 months ago

Handy Regular Expressions(RegEx) - Zip/Postal code validation for France/Italy/Germany and India. Zip code validation for any country is most common validation required for any web site where you have address input. Here is the handy regular expressions, which can be used for Zip/Postal code validation on your web page. read more...

add a comment |category: |Views: 225

tags: another

Online .NET Regex Tester(regexstorm.net)

submitted by lonekoreanlonekorean(35) 2 years, 3 months ago

Big upgrades for the .NET regex tester on Regex Storm. Now features an Ajax-powered UI, real-time match highlighting, and detailed results info via a tabbed interface (especially useful for .NET programmers). read more...

add a comment |category: |Views: 129

tags: another

Online .NET Regex Tester(regexstorm.net)

submitted by lonekoreanlonekorean(35) 2 years, 4 months ago

This is a .NET regular expressions testing site I recently launched. It lets you test matches, replacements, and splits, all with various options and informative results output. I hope some of you find it useful and I gladly welcome your feedback. read more...

1 comment |category: |Views: 232

tags: another

Forex Impact Jason Fielder Reviews(forextradingcoursereviews.com)

submitted by EvansPaulEvansPaul(5) 2 years, 6 months ago

Jason Fielder has really put the meat and potatoes in with this one. I don't think anything is left out honestly. Oh and the backstage pass to his daily alerts is crazy stuff. You have to get this if you're anything serious about changing your life around in the forex trading market. I'd love to chat here more with this review but can't keep away from my trades and my kids are trying to drag me away from the computer. read more...

add a comment |category: |Views: 2

tags: another

Regex matching and naming groups in C#(leniel.net)

submitted by lenielleniel(504) 2 years, 7 months ago

Let’s say you have a string and want to match individual groups of characters against that string. How would you do that? That’s the question I asked myself. The following code is the outcome of some research on how to get this done. It shows you how to capture/match and name groups of characters using a regex. read more...

add a comment |category: |Views: 32

tags: another

Count the occurences of characters set/group in a string(code.mareoblo.pl)

submitted by elfyelfy(230) 2 years, 8 months ago

For example, to count all occurences of UpperCase chars, digits and 2 special symbols in a string read more...

add a comment |category: |Views: 8

tags: another

Remove all special characters from a string, allowing alphanumeric(code.mareoblo.pl)

submitted by elfyelfy(230) 2 years, 8 months ago

Remove all special characters from a string, allowing only alphanumeric and chars: ‘.’ and ‘-’ read more...

1 comment |category: |Views: 193

tags: another

Time hh:mm validation 24 hours format(code.mareoblo.pl)

submitted by elfyelfy(230) 2 years, 8 months ago

Check if time is in 24h format hh:mm For example these values are valid: 01:00 (leading zero is mandatory), 05:01, 13:00, 23:59. For example these values are not valid: 24:00, 1:30, 05:60, 12|34 etc. read more...

add a comment |category: |Views: 154

tags: another