Skip to content

Instantly share code, notes, and snippets.

@trafficinc
Created June 14, 2020 13:14
Show Gist options
  • Save trafficinc/78e7d9831d347bc326431100914cf0ea to your computer and use it in GitHub Desktop.
Save trafficinc/78e7d9831d347bc326431100914cf0ea to your computer and use it in GitHub Desktop.
Format To RegEx String
<?php
function formatToRegex(string $format): string {
$result = preg_quote($format, '/');
$result = str_replace('%d', '\d+', $result);
$result = str_replace('%s', '[^\r\n]+', $result);
return "/^$result$/s";
}
$output = "Mr. Jones";
var_dump(formatToRegex($output));
/*
string(15) "/^Mr\. Jones$/s"
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment