Best unofficial Apache Server developers community |
|
The code below worked fine until I added the regex line. When I comment it out, the code works again ... I'm stumped. I'm only using a regex to search a file for three different type of strings concurrently(ascii, hex, string). Any help is appreciated, thanks!
posted via StackOverflow
|
![]()  
|
When I ran this code, I got an error like
This is because the previous line, which contains the compiled regular expression, is missing a closing parentheses:
should read
|