Hello everybody,
of course I have found the documentation about the search-options
But I haven't found examples that show the use and especially how to combine search-options
right now I would like to do a search find filename containing the characters
1. "quad" and "fkt"
or
2. "quad" and "funkt"
or
3. "sp" and "fkt"
or
4. "sp" and "funkt"
So this means the filenames should have the two character-sequences written in the line above
beginning with 1. or the line beginning with 2. or the line beginning with 3. etc.
But how do I wite this as a regular expression?
best regards Stefan
examples that show the use of combined options
Re: examples that show the use of combined options
1. "quad" and "fkt"
2. "quad" and "funkt"
3. "sp" and "fkt"
4. "sp" and "funkt"
or
(the (un)? indicates that there might be a 'un' part, but that also might be absent. So it matches funkt as well as fkt.
Note that in the first two, the order of the words is of importance; in the last one the words can be in any order.
Without regular expressions:
2. "quad" and "funkt"
3. "sp" and "fkt"
4. "sp" and "funkt"
For example with:
Code: Select all
regex:"(sp|quad).*(funkt|fkt)"
Code: Select all
regex:"(sp|quad).*(f(un)?kt)"
Note that in the first two, the order of the words is of importance; in the last one the words can be in any order.
Without regular expressions:
Code: Select all
<quad|sp> <funkt|fkt>
Re: examples that show the use of combined options
Hi NotNull,
first of all: that is a really creative and funny wordplay as a username ) made me smile
Thank you very much for your examples
best regards Stefan
first of all: that is a really creative and funny wordplay as a username ) made me smile
Thank you very much for your examples
best regards Stefan
Re: examples that show the use of combined options
Thanks!
And you're welcome, of course. If you need more examples/explanations .. just let me/us know.
And you're welcome, of course. If you need more examples/explanations .. just let me/us know.