I understand that .NET's regex works with strings, but I need an implementation for byte[] arrays. Are there any open source implementation in .NET? Does byte[] regex exists for any other programming language other than C# which I can use to build a wrapper for it in C#?
My limitation is that I have to stay within byte arrays. So cannot do any conversions to strings.
Thanks for the advice.