Last active
July 21, 2021 14:12
-
-
Save vertexvaar/571bda4796d4f8a6b9d51b19528d147d to your computer and use it in GitHub Desktop.
RegEx search & replace
This file contains 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: \/\*{3,}(\n(?:\s\*[^\*]*\n)+\s)\*{3,}\/ | |
Replace: /*$1*/ |
This file contains 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: \/\*\*\n\s+\*\s(.*?)\n\s+\*\/ | |
Replace: /** $1 */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment