Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save reservationlive/125768 to your computer and use it in GitHub Desktop.
Save reservationlive/125768 to your computer and use it in GitHub Desktop.
For example, convert this:
["AUD", "Australian Dollar"],
["NZD", "New Zealand Dollar"],
["USD", "US Dollar"],
to this:
["Australian Dollar", "AUD"],
["New Zealand Dollar", "NZD"],
["US Dollar", "USD"],
Use:
Find: ^\[\"(\w{3})\",\"(.*)\"\],
Replace: ["$2", "$1"],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment