I want to weed out lines that have only numeric characters OR
numeric characters and space(s) .
If it is a numeric line , I want to 'Goto SkipThisLine'
But my RegEx lets thru every line .
How can this be fixed?
Code: Select all
; CreateRegularExpression(0, "^[0-9 ]+$") ; First Try "^[0-9]+$"
If ExamineRegularExpression(0, aLine$)
Debug "RegularExpressionError() = " + RegularExpressionError()
; Goto SkipThisLine
Debug "SkipThisLine = " + aLine$
EndIf
Debug "This Line Not Numeric = " + aLine$