[ create a new paste ] login | about

Link: http://codepad.org/re1VGntA    [ raw code | output | fork ]

PHP, pasted on Jun 10:
1
2
3
4
5
<?php
  $string = 'abc-123-xyz-789';
    $output = array_pop(explode("-",$string));
    echo $output;
?>


Output:
1
789


Create a new paste based on this one


Comments: