Page 1 of 1

Replacing title of base form

Posted: Wed Sep 26, 2012 8:22 pm
by monkey2012
Can I change /form[@title='Form1'] to /form[@title='FormN'] where N=2, 3, 4, 5, .... at runtime

Re: Replacing title of base form

Posted: Thu Sep 27, 2012 5:33 am
by odklizec
I would use something like this... /form[@title~'^Form[0-9]'] or this /form[@title~'^Form*'] (more universal). Hope this helps?