Last active
April 17, 2018 22:46
-
-
Save alexgalkin/b929bf20ab6cd64147cd6816926d1a51 to your computer and use it in GitHub Desktop.
Sublime Tips
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
RegExpt for getting String before the first comma | |
^([^,])+ | |
... alternative approach (option with selecting all possible characters) | |
^[a-zA-Z0-9\s\-\(\)\_\<\>]+ | |
... and before the first space | |
^([^\s])+ | |
Regexp for removing blank lines | |
^(\r|\n\r?) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment