Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active October 22, 2020 01:22
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 mcsee/19b5965879d11e6c185d4591add24042 to your computer and use it in GitHub Desktop.
Save mcsee/19b5965879d11e6c185d4591add24042 to your computer and use it in GitHub Desktop.
<?
$schoolDescription = 'College of Springfield';
preg_match('/[^ ]*$/', $schoolDescription, $results);
$location = $results[0]; // $location = 'Springfield'.
$school = preg_split('/[\s,]+/', $schoolDescription, 3)[0]; //'College'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment