Registriert seit: 16. Feb 2015
Ort: Halle/S.
116 Beiträge
Delphi 10.2 Tokyo Enterprise
|
AW: RegExpr to detect integers
16. Apr 2015, 16:11
You could use the following RegEx for a positive check:
Code:
(?<!\.|\,|\d)([-+]?\d+)(?!\d*[\.|\,]\d*)
https://regex101.com/r/yU2vY2/1
Sebastian
|