C# Regular Expression for N number of Consecutive Characters
Posted
by Chris
on Stack Overflow
See other posts from Stack Overflow
or by Chris
Published on 2010-04-01T22:31:40Z
Indexed on
2010/04/01
22:33 UTC
Read the original article
Hit count: 888
I need a regular expression that matches three consecutive characters (any alphanumeric character) in a string.
Where 2a82a9e4eee646448db00e3fccabd8c7 "eee" would be a match. Where 2a82a9e4efe64644448db00e3fccabd8c7 "444" would be a match.
etc.
© Stack Overflow or respective owner