Created
April 11, 2021 00:35
-
-
Save drajathasan/dec6cb9031831608f46f0a48a1409cb8 to your computer and use it in GitHub Desktop.
Regex at 11/04/2021
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 string before string ":" | |
.+?(?=:) | |
# Search string only some range character e.g: a to z | |
^[a-z]*$ | |
# Search bracket | |
{+\w+} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment