Skip to content

Instantly share code, notes, and snippets.

@ssatz
Created February 22, 2019 08:29
Show Gist options
  • Save ssatz/26b01a04c78a7eb33cfb90f312a08633 to your computer and use it in GitHub Desktop.
Save ssatz/26b01a04c78a7eb33cfb90f312a08633 to your computer and use it in GitHub Desktop.
preg split
<?php
$e =preg_split('/(?=[\s][0-9]+)/i','Red chilli powder 2.50 tbsp');
print_r($e);
//Array ( [0] => Red chilli powder [1] => 2.50 tbsp )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment