Regex Custom Creation

1

Hello,

asked by anonymous 14.11.2017 / 12:07

1 answer

4

You can use this expression: ^FKDOC\d{16}$ . It means that it will capture at the beginning of the string by FKDOC followed by 16 digits (0-9).

    
14.11.2017 / 12:12