Hallo,
ich muss prüfen, ob ein Feld folgende Kriterien erfüllt:
- Länge: 8 Zeichen
- Stelle 1 + 2: Buchstaben
- Stelle 3 - 8: Ziffern
Ich habe mir jetzt einen abgebrochen und folgende Formel erstellt, evtl. kennt jemand was effektiveres und ich habe mal wieder viel zu umständlich gedacht?
tmpAlpha := "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
tmpDigit := "0123456789";
tmpErrorMsg := "Wrong User-Id. The User-Id must start with two alphabetic characters followed by six number characters. Example: BE123456";
@If(
!@Length(
@ThisValue
)
= 8;
@Failure(tmpErrorMsg);
""
);
@For(
counter := 0;
counter <= 1;
counter := counter + 1;
@If(
!@Contains(
tmpAlpha;
@Middle(
@ThisValue;
counter;
1
)
);
@Failure(tmpErrorMsg);
""
)
);
@For(
counter := 2;
counter <= 7;
counter := counter + 1;
@If(
!@Contains(
tmpDigit;
@Middle(
@ThisValue;
counter;
1
)
);
@Failure(tmpErrorMsg);
@Success
)
);
Vielen Dank für eure Tipps und Kommentare
Christoph