Hello,
I have found no way to use wildcards in the text search. It is impossible?
Thank you, Stumpi.
Wildcards in the text search of WeBuilder
Moderator: kfury77
Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
- Do not create new topics for already requested features. Add your comments to the existing feature request topics instead;
- Create separate topic for each feature suggestion. Do NOT post a number of non-related feature suggestions in a single topic;
- Give your topic a meaningful title. Do NOT create topics with meaningless titles, such as "My Suggestion" or "My Problem".
Re: Wildcards in the text search of WeBuilder
You can use regular expressions by checking Regular Expressions in Find window. They can find wildcard-like expressions and much more, some info here: http://www.regular-expressions.info/quickstart.html
If you're only familiar with wildcards, here's what you can use:
wildcard-like would be
wildcard-like would be
You can also search things like or find any tag with and much more.
If you're only familiar with wildcards, here's what you can use:
wildcard-like
Code: Select all
file?
Code: Select all
file.
Code: Select all
file*template.php
Code: Select all
file.*template\.php
Code: Select all
var[0-9]+
Code: Select all
<[a-z]+>
Blumentals Software Programmer
Re: Wildcards in the text search of WeBuilder
Thanks for your helpful answer and for your patience. I tested it, it works well. I just have to remember the correct character sequences.
Stumpi

Stumpi
Re: Wildcards in the text search of WeBuilder
Regexes can be useful professionally in your projects as well, see:
http://php.net/manual/en/ref.pcre.php
http://php.net/manual/en/ref.pcre.php
Blumentals Software Programmer