Community Patterns

Community Library Entry

1

Regular Expression
Created·2023-05-31 08:14
Flavor·.NET 7.0 (C#)

@"
(?'Code'[A-Z]{3})\t(?'Number'[0-9]{3})\t(?'NumbersAfterDecimal'.*)\t(?'Name'.*)\t(?'UsedIn'.*)
"
gm
Open regex in editor

Description

This converts the values in this table to C# code.

Example:

pulic enum Iso4217
{
    /* output here */
}
Submitted by Diemaco