Chris Kistorian
Всего сообщений: 31
Дата регистрации: 16.08.2012
|
Создано:
20.08.2012 11:58:56
|
What syntax would be appropriate for providing a wildcard for a portion of the string. For example, in this window caption "OnlineOrder_00108904.html - Mozilla Firefox" I would like to be able to bypass the changes of any of the the digits (0010108904) so regardless of which digits appear there, it would result in a match. Thank you very much.
|
Bogdan Polishchuk
Администратор
Всего сообщений: 4113
Дата регистрации: 04.04.2012
|
Создано:
24.08.2012 01:49:17
|
Hello Chris.
Try this regular expression: OnlineOrder_\d+\.html - Mozilla Firefox
d+ means arbitrary amount of digits.
Best regards.
|