Skip to content

Instantly share code, notes, and snippets.

@jakeasmith
Created December 25, 2012 08:17
Show Gist options
  • Save jakeasmith/4372232 to your computer and use it in GitHub Desktop.
Save jakeasmith/4372232 to your computer and use it in GitHub Desktop.
Regex example for dont-know.it
<select>
<option value="ME">Maine</option>
<option value="FL">Florida</option>
</select>
<?php
// Find string
// .*value=\"(.*)\">(.*)<.*
// Replace string
// "$1" => "$2",
// PHP example goes here
// Result:
// "ME" => "Maine",
// "FL" => "Florida",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment