Hi Derek, Derek Hohls wrote: > pattern="^(http|https|ftp)://" > > but this only allows me to enter only the prefix; not any string starting with > those characters, which is what I thought the ^ character would do
no time to test, but what about pattern="^(http|https|ftp)://.*" meaning start with either http, https, ftp, followed by :// and any number of characters (except CR/LF). Bye, Florian --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
