Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Regular expression validation in DEV and Hosted Mode

    Hi All,
    I have a requirement to match all numeric items separated by comma.
    I have a regular expression [[0-9]*,*]* which does the job and this is working fine in DEV mode.
    But the same fails in Hosted Mode.

    It does not recognize the pattern when I enter the second numeric item after comma in HOSTED mode.

    I have validated my regular expression in http://www.pagecolumn.com/tool/regtest.htm and it matches perfect.

    Is it a problem in hosted Mode?

    I use smart gwt 2.2, gwt 2.0.3, Widows XP 2002 SP 2, IE 6

    #2
    I changed the regular expression from [[0-9]*,*]* to ([0-9]*,*)* and this works fine in both DEV mode as well as HOSTED mode.

    Could be a problem with my regular expression but I am still not sure why [[0-9]*,*]* has worked fine in DEV mode but not in Hosted Mode.

    Comment

    Working...
    X