Created
July 31, 2019 10:36
-
-
Save Luke1982/54d08807ace2bd1931a2f537ff03109f to your computer and use it in GitHub Desktop.
Regex to convert include style from function call to statement
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Search for | |
include_once\(([\'a-z/\.]*)\) | |
### Replace with | |
include_once $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment