hi frnds i am new user of perl and interwoven,i was trying to implement the following regular expression in text box created for testing purposes :-[HTML][/HTML] as per my unstding it means that text shld start with 0-9 and it matches the entire text 0 or more times and it shld also end with digits only but i am able to fill anything in text box be it alphabets or special characters,i dont unstd where i am going wrong,pls help regarding this basic issueregards,rahul
yes,kalra thanks for ur prompt response,i was thinking on same lines that in any case it shld take only digits and not anything else there are no requirements really ,i am a newbie and was just testing the following item on my own [php] whole amount[/php] i ll try to find out what's going wrong
yes,kalra thanks for ur prompt response,i was thinking on same lines that in any case it shld take only digits and not anything else there are no requirements really ,i am a newbie and was just testing the following item on my own [php] whole amount [/php] i ll try to find out what's going wrong
You are able to enter any characters in that textfield - but are you able to save the DCR? The validation-regex is used at the time of saving not at the time of entry.BTW - you probably want to use '+' instead of '*' - as you want '1-or-more-digits' not '0-or-more', at least I imagine that's what you'd want.