I would like a c# regex to determine if a string contains 5+ characters within a defined sequence.
Example: If the sequence was the alphabet then 'ghijk' would be true, while 'lmn' would be false.
Edit: The sequence needs to be in order. from example above 'ghijz' would return false.