c# - Is there a .NET library that can do string permutations or string expansion? -


what i'm looking library or code of classes can used expand construction strings variations , permutations. following (syntax mine, may different):

construction string: [ff]oo [bbß]ar|f(oo|oe) output strings:   foo bar   foo bar   foo bar   foo bar   foo ßar   foo ßar   foo   foe 

while wouldn't hard build myself, if it's around, why bother reinventing wheel?

this doesn't follows syntax, use in projects , runs smooth: permutations, combinations, , variations using c# generics


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -