Skip to main content
Improved formatting.
Source Link
Alan Moore
  • 75.6k
  • 13
  • 110
  • 161

It is actually possible to do it using .NET regular expressions, but it is not trivial, so read carefully.

You can read a nice article here. You also may need to read up on .NET regular expressions. You can start reading here.

Angle brackets <> were used because they do not require escaping.

The regular expression looks like this:

< [^<>]* (   (   (?<Open><)   [^<>]*   )+   (   (?<Close-Open>>)   [^<>]*   )+ )* (?(Open)(?!)) > 

It is actually possible to do it using .NET regular expressions, but it is not trivial, so read carefully.

You can read a nice article here. You also may need to read up on .NET regular expressions. You can start reading here.

Angle brackets <> were used because they do not require escaping.

The regular expression looks like this:

< [^<>]* (   (   (?<Open><)   [^<>]*   )+   (   (?<Close-Open>>)   [^<>]*   )+ )* (?(Open)(?!)) > 

It is actually possible to do it using .NET regular expressions, but it is not trivial, so read carefully.

You can read a nice article here. You also may need to read up on .NET regular expressions. You can start reading here.

Angle brackets <> were used because they do not require escaping.

The regular expression looks like this:

< [^<>]* ( ( (?<Open><) [^<>]* )+ ( (?<Close-Open>>) [^<>]* )+ )* (?(Open)(?!)) > 
deleted 63 characters in body; deleted 54 characters in body
Source Link
Danny Beckett
  • 21.1k
  • 27
  • 114
  • 144

It is actually possible to do it using .netNET regular expressions. But, but it is not trivial, so read carefully.

You can read a nice article here You. You also may need to read up on .netNET regular expressions. You can start reading here.

Angle brackets <><> were used because they do not require escaping. Regular

The regular expression looks like this:

 <  [^<>]*  (   (   (?<Open><)   [^<>]*   )+   (   (?<Close-Open>>)   [^<>]*   )+  )*  (?(Open)(?!))  >  

It is actually possible to do it using .net regular expressions. But it is not trivial, so read carefully.

You can read a nice article here You also may need to read up on .net regular expressions. You can start reading here

Angle brackets <> were used because they do not require escaping. Regular expression looks like this:

 <  [^<>]*  (   (   (?<Open><)   [^<>]*   )+   (   (?<Close-Open>>)   [^<>]*   )+  )*  (?(Open)(?!))  >  

It is actually possible to do it using .NET regular expressions, but it is not trivial, so read carefully.

You can read a nice article here. You also may need to read up on .NET regular expressions. You can start reading here.

Angle brackets <> were used because they do not require escaping.

The regular expression looks like this:

< [^<>]* ( ( (?<Open><) [^<>]* )+ ( (?<Close-Open>>) [^<>]* )+ )* (?(Open)(?!)) > 
added 1 characters in body
Source Link

It is actually possible to do it using .net regular expressions. But it is not trivial, so read carefully.

You can read a nice article here You also may need to read up on .net regular expressions. You can start reading here

Angle brackets <> were used because they do nonot require escaping. Regular expression looks like this:

 < [^<>]* ( ( (?<Open><) [^<>]* )+ ( (?<Close-Open>>) [^<>]* )+ )* (?(Open)(?!)) > 

It is actually possible to do it using .net regular expressions. But it is not trivial, so read carefully.

You can read a nice article here You also may need to read up on .net regular expressions. You can start reading here

Angle brackets <> were used because they do no require escaping. Regular expression looks like this:

 < [^<>]* ( ( (?<Open><) [^<>]* )+ ( (?<Close-Open>>) [^<>]* )+ )* (?(Open)(?!)) > 

It is actually possible to do it using .net regular expressions. But it is not trivial, so read carefully.

You can read a nice article here You also may need to read up on .net regular expressions. You can start reading here

Angle brackets <> were used because they do not require escaping. Regular expression looks like this:

 < [^<>]* ( ( (?<Open><) [^<>]* )+ ( (?<Close-Open>>) [^<>]* )+ )* (?(Open)(?!)) > 
edited body
Source Link
Loading
Source Link
Loading