Hi all,
i have a DW regular expression for digits:
Match( GetText(), "^[0-9,]+$")
This works well with positive digits. Now i want to check negative digits:
Match( GetText(), "^[0-9,-]+$")
This throws an execption when i entered a "-" as first character.
Any ideas to solve the problem.
Thanks.
Frank