[Done] PB 6.40 Alpha 1 - Fixed length is ignored in fixed strings
Posted: Mon Jan 26, 2026 10:57 pm
Code: Select all
Structure DateFields
Day.s{2}
Dot1.s{1}
Month.s{2}
Dot2.s{1}
Year.s{4}
EndStructure
Structure Date
StructureUnion
Date.s{10}
Fields.DateFields
EndStructureUnion
EndStructure
Define Date.Date
Date\Date = "26.01.2026"
Define Month.s = Date\Fields\Month
Debug Month
01.2026