Month: July 2018

Regular Expression Syntax Reference

This section of the PhpStorm documentation website provides a brief summary of regexp syntax that can be helpful for creating search and issue navigation patterns. https://www.jetbrains.com/help/phpstorm/regular-expression-syntax-reference.html

Tagged with: ,

Using regex to replace upper case with lower case in JetBrains IDEs?

find: (\w+_)+(\w+) replace: \L$1$2\E from: https://stackoverflow.com/a/32137232

Tagged with: ,
Top