Skip to content

Instantly share code, notes, and snippets.

@kennwhite
Last active December 17, 2022 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennwhite/ace6c759b7ea9fd035d015d52f5c3e50 to your computer and use it in GitHub Desktop.
Save kennwhite/ace6c759b7ea9fd035d015d52f5c3e50 to your computer and use it in GitHub Desktop.
Sublime regexp for find & replace
Regular expression for Sublime to find & replace and add double quotes
"$numberLong": 706213333988
to
"$numberLong": "706213333988"
Use this (make sure the [.*] button on the left is pressed)
Find: \$numberLong": (.*)
Replace: \$numberLong": \"\1\"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment