Hallo,
Is it possible to have the wildcard "?" as a normal Symbol? I need it for an URL like xxx/-wood?priceRangexxx". I tried it with the backslash "\?price Range..." but it doesn't worked.
Thanks for your help
Hallo,
Is it possible to have the wildcard "?" as a normal Symbol? I need it for an URL like xxx/-wood?priceRangexxx". I tried it with the backslash "\?price Range..." but it doesn't worked.
Thanks for your help
The regular expression equivalent of ? wildcard is the dot-questionmark: .?
The regular expression equivalent of * is the dot-star: .* (though in certain cases it should be dot-star-questionmark: .*?)
Probably the documentation could be improved with an example for these use-cases.
Cheers, gabor