-
-
Save stokito/9f7627a40eed42c2e7554cf4f7e85617 to your computer and use it in GitHub Desktop.
replace single line comments // with multiline comments /*
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 pattern: (.*)(//)(.*)(\n) | |
Replace with: $1/\*$3 \*/$4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
replace Write and WriteLn with padding to format()
Replace this
To this
Use this regexp and replacement:
Replace this
To this
Use this regexp and replacement:
Here is a problem:
Incorrectly replaced to:
Fix it manually, I don't know how to avoid this.
Replace this
To this
Use this regexp and replacement: