Skip to content

Instantly share code, notes, and snippets.

@bezborodow
Created October 5, 2016 07:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bezborodow/bac574a95ab5db32503606bc35d8a2ed to your computer and use it in GitHub Desktop.
Save bezborodow/bac574a95ab5db32503606bc35d8a2ed to your computer and use it in GitHub Desktop.
Regular Expression to Change Verb to Past Tense
<?php
$verb = 'Suspend'; // becomes Suspended
$verb = 'Shape'; // becomes Shaped
$past = preg_replace('/(\w+?)e?\b/', '$1ed', $verb, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment