x Did you like it? Well, then please consider making a donation :)

Regex Author - stackoverflow

Regex.Matches, Regular Expression for hexadecimal number

Matches expression starting with a 0, following by either a lower or uppercase x, followed by one or more characters in the ranges 0-9, or a-f, or A-F.

Type: match, Date: 8/14/2015 1:07:13 PMAuthor: stackoverflow

XML file parsing with .NET Regex.Match

You can do this via regex or xpath, depending on the complexity of the xml. If you want to use regular expressions, you'd probably want to do something like this:

Type: match, Date: 8/12/2015 5:14:43 PMAuthor: stackoverflow

Split string to get Date and text

I have to process text file like that: text 01/01/1970 text 02/01/1970 ... etc. I want the output to be the following data: according to the docs, wrapping the string you're splitting on in () (making it a capture group) will result in these captures being included in the array.

Type: split, Date: 8/12/2015 4:38:43 PMAuthor: stackoverflow

IP Address (IPv4) Regex .NET

Regular expressions are very commonly used by any developer no matter what language he's writing his program. Today I'll show the most useful Regex that sooner or later you will need them. For c# or vb.net. You want to check whether a certain string represents a valid IPv4 address in 255.255.255.255 notation. Optionally, you want to convert this address into a 32-bit integer.

Type: match, Date: 7/28/2015 11:40:12 AMAuthor: stackoverflow

Regular Expression to match every new line character (\n) inside a text block (content block)

I'm looking for a regular expression to match every new line character (\n) inside a XML tag which is <content>, or inside any tag which is inside that <content> tag, for example: <blog>bla bla</blog><content>1 \n 2 \n 3</content>

Type: match, Date: 7/12/2015 4:21:02 PMAuthor: stackoverflow