Zum Hauptinhalt gehen

example of workflow validatation example

Kommentare

1 Kommentar

  • Permanently deleted user

    There are three options for the validation items. You can use a Numeric Range, a Required Value, or a Regular Expression. The first two should be self-explanatory, but the third, while very powerful, requires knowledge of how to construct a regular expression.  You can use a regular expression to limit the textbox to just about any kind of input you can think of. For example the regular expression ^[a-zA-Z0-9]+$ will match any number of alphanumeric characters, but will reject any 'special' characters or spaces. If you click the ... button by the Regular Expression textbox you can see some built in examples.

    There is a good cheatsheet available here:

    http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/

    A more in depth treatment (though focused on Unix users) is available here:

    http://www.grymoire.com/Unix/Regular.html

    And if you are feeling brave, the Wikipedia article is certainly complete, although quite technical:

    http://en.wikipedia.org/wiki/Regular_expression

    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.