Code: Alles auswählen
str.s = "abcd" + #LF$ + "{{uii" + #LF$ + "{{blabla"
CreateRegularExpression(0, "\{\{(?<name>blabla)", #PB_RegularExpression_MultiLine | #PB_RegularExpression_AnyNewLine)
ExamineRegularExpression(0, str)
If NextRegularExpressionMatch(0)
Debug RegularExpressionNamedGroup(0, "name")
Debug RegularExpressionNamedGroupPosition(0, "name")
EndIf
Kann ich irgendwie die absolute Position abrufen, ohne FindString nutzen zu müssen?