Latest Regular Expressions stories

Highlighting search text in ASP.NET search page(www.knowdotnet.com)

submitted by vijaystvijayst(1307) 3 months, 3 days ago

The article explains how to highlight search text within an ASP.NET search page. The code uses regular expressions to replace text with HTML formatting. read more...

1 comment |category: |Views: 25

tags: another

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

submitted by skpananghatskpananghat(184) 8 months, 5 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(273) 1 year, 1 month 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

Regex Hero can now translate a regular expression into English(blog.regexhero.net)

submitted by BucketSoftBucketSoft(273) 1 year, 1 month ago

Regular expressions are one of those things that many programmers dabble with enough to understand the concept, but not enough to memorize the syntax. Code completion is a big step towards making things easier. Beyond that, sometimes an explanation written out in English is just what you need. read more...

3 comments |category: |Views: 544

tags: another

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

submitted by lukus7lukus7(135) 1 year, 4 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: 256

tags: another

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

submitted by quachnguyenquachnguyen(384) 1 year, 8 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: 6

tags: another

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

submitted by KodefuGuruKodefuGuru(2589) 1 year, 9 months 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(273) 1 year, 10 months 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(129) 1 year, 10 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: 71

tags: another

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

submitted by outcoldmanoutcoldman(100) 1 year, 10 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 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: 195

tags: another

Online .NET Regex Tester(regexstorm.net)

submitted by lonekoreanlonekorean(35) 2 years 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: 125

tags: another

Regex based Lexer with F#(blogs.msdn.com)

submitted by jemtsjemts(591) 2 years ago

A regular expression based lexer in F# using computation expressions to enable a declarative way to define the lexer rules. read more...

add a comment |category: |Views: 40

tags: another

Online .NET Regex Tester(regexstorm.net)

submitted by lonekoreanlonekorean(35) 2 years, 1 month 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: 192

tags: another

Forex Impact Jason Fielder Reviews(forextradingcoursereviews.com)

submitted by EvansPaulEvansPaul(5) 2 years, 3 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(489) 2 years, 4 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: 30

tags: another