(?i)applies the following effective flags to the remainder of the pattern: gmui i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters
PODATNIKthe literal text PODATNIK (case insensitive) \:the literal : (5810 / 728 / 3A16)
*matches any number of characters from the set below:
\sa Unicode whitespace character
\athe bell character (ASCII 7)
Group NAZWA(?<NAZWA>[\S ]*) *matches any number of characters from the set below:
\Sany character that is not Unicode whitespace
the literal (3210 / 408 / 2016)
Group KODPOCZTOWY(?<KODPOCZTOWY>\d{2}-\d{3} ) \d{2}a Unicode decimal digit, repeated exactly 2 times
-the literal - (4510 / 558 / 2D16)
\d{3}a Unicode decimal digit, repeated exactly 3 times
the literal (3210 / 408 / 2016)
Group LOKALIZACJA(?<LOKALIZACJA>[a-ż ]+) +matches at least one character from the set below:
a-żone character from a (9710) to ż (38010) (case insensitive)
the literal (3210 / 408 / 2016)
*matches any number of characters from the set below:
\sa Unicode whitespace character
\athe bell character (ASCII 7)
ORYGINAŁthe literal text ORYGINAŁ (case insensitive) *matches any number of characters from the set below:
\sa Unicode whitespace character
\athe bell character (ASCII 7)
\k<LOKALIZACJA>the text saved by group LOKALIZACJA
,the literal , (4410 / 548 / 2C16)
*matches any number of characters from the set below:
\sa Unicode whitespace character
Group DATA(?<DATA>\d{4}-\d{2}-\d{2}) \d{4}a Unicode decimal digit, repeated exactly 4 times
-the literal - (4510 / 558 / 2D16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
-the literal - (4510 / 558 / 2D16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
*matches any number of characters from the set below:
\sa Unicode whitespace character
\athe bell character (ASCII 7)
Group ULICA(?<ULICA>[a-ż 0-9]*) Character Class[a-ż 0-9]* *matches any number of characters from the set below:
a-żone character from a (9710) to ż (38010) (case insensitive)
the literal (3210 / 408 / 2016)
0-9one character from 0 (4810) to 9 (5710)
*matches any number of characters from the set below:
\sa Unicode whitespace character
\athe bell character (ASCII 7)
Bankthe literal text Bank (case insensitive) *matches any number of characters from the set below:
\sa Unicode whitespace character
:the literal : (5810 / 728 / 3A16)
*matches any number of characters from the set below:
\sa Unicode whitespace character
Group BANK(?<BANK>[\w ]*) *matches any number of characters from the set below:
\wa Unicode word character
the literal (3210 / 408 / 2016)
*matches any number of characters from the set below:
\sa Unicode whitespace character
\athe bell character (ASCII 7)
NIPthe literal text NIP (case insensitive) *matches any number of characters from the set below:
\sa Unicode whitespace character
:the literal : (5810 / 728 / 3A16)
*matches any number of characters from the set below:
\sa Unicode whitespace character
Group NIP(?<NIP>\d{3}-\d{3}-\d{3}) \d{3}a Unicode decimal digit, repeated exactly 3 times
-the literal - (4510 / 558 / 2D16)
\d{3}a Unicode decimal digit, repeated exactly 3 times
-the literal - (4510 / 558 / 2D16)
\d{3}a Unicode decimal digit, repeated exactly 3 times
*matches any number of characters from the set below:
\sa Unicode whitespace character
\athe bell character (ASCII 7)
Kontothe literal text Konto (case insensitive) *matches any number of characters from the set below:
\sa Unicode whitespace character
:the literal : (5810 / 728 / 3A16)
Group KONTO(?<KONTO>\d{26}) FAKTURA VATthe literal text FAKTURA VAT (case insensitive) Group NRFAKTURY(?<NRFAKTURY>\d{2}\/\d{2}\/\d{4})* Data wystawieniathe literal text Data wystawienia (case insensitive) Group DATAWYSTAWIENIA(?<DATAWYSTAWIENIA>\d{4}-\d{2}-\d{2}) Data sprzedażythe literal text Data sprzedaży (case insensitive) Group DATASPRZEDAZY(?<DATASPRZEDAZY>\d{4}-\d{2}-\d{2}) Na podstawiethe literal text Na podstawie (case insensitive) Group NAPODTSAWIE(?<NAPODTSAWIE>[a-ż]\d{5}) ,the literal , (4410 / 548 / 2C16)
z dniathe literal text z dnia (case insensitive) :the literal : (5810 / 728 / 3A16)
Group ZDNIA(?<ZDNIA>\d{4}[-]?\d{2}[-]?\d{2}) NABYWCAthe literal text NABYWCA (case insensitive) :the literal : (5810 / 728 / 3A16)
Group NABYWCA(?<NABYWCA>[\S ]*) \(the literal ( (4010 / 508 / 2816)
\)the literal ) (4110 / 518 / 2916)
:the literal : (5810 / 728 / 3A16)
Group ULICA2(?<ULICA2>[a-ż 0-9]*\d[a-z]{1,3} ) Group MIASTO(?<MIASTO>[a-ż]*) ,the literal , (4410 / 548 / 2C16)
Group KODPOCZTOWY2(?<KODPOCZTOWY2>\d{2}[-]?\d{3}) N2Pthe literal text N2P (case insensitive) :the literal : (5810 / 728 / 3A16)
Group N2P(?<N2P>\d{3}[-]?\d{3}[-]?\d{2}[-]?\d{2}) Operator prowadzącythe literal text Operator prowadzący (case insensitive) :the literal : (5810 / 728 / 3A16)
Group OPERATOR(?<OPERATOR>[a-ż ]*) ,the literal , (4410 / 548 / 2C16)
Telthe literal text Tel (case insensitive) .any Unicode character (except for line terminators)
:the literal : (5810 / 728 / 3A16)
Group TEL(?<TEL>[0-9]{9}|[0-9 ]*) g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
u modifier: unicode. Treats the pattern and subject as UTF-16