Nearly regex with glob

140 Views Asked by At

PHP's glob seems to support a limited-range of regex-like syntax.

I would like to catch hello<somethingherebutonlyifitbeginsby#>.txt, i.e.:

  • hello.txt: ok
  • hello#you.txt: ok
  • hellome.txt: not ok

I tried

glob('hello#?*.txt', GLOB_BRACE);

but it doesn't work. How can we correct it?

2

There are 2 best solutions below

1
On BEST ANSWER

You can write it like that:

glob('hello{#*,}.txt', GLOB_BRACE);

where {aa,bb} is an alternation (feature available with the GLOB_BRACE and with OSes that support it).

0
On

glob's regex also supports character classes and negative character classes, using the syntax [] and [^]. It will match any one character inside [] or match any one character that is not in [^].

hello.txt: ok
hello#you.txt: ok
hellome.txt: not ok
//[] include chars. and #
var_dump(glob('hello[.#]*txt', GLOB_BRACE));

array(2) {
[0]=>
 string(13) "hello#you.txt"
[1]=>
 string(9) "hello.txt"
}


>ls hello* 
hellome.txt  hello.txt  hello#you.txt