fork download
  1. <?php
  2.  
  3. $str = "SI-#CL#¤1801 BARBER LANE#CL#MILPITAS CA 95035#CL#FONE 1-408-943-0600#CL#FAX 1-408-943-0484#CL#¤CANCEL BY 5 PM - RQST-NO FEATHER"; // => CANCEL BY 5 PM - RQST-NO FEATHER
  4. //$str = "#CL#¤1801 BARBER LANE#CL#MILPITAS CA 95035#CL#FONE 1-408-943-0600#CL#FAX 1-408-943-0484#CL#¤CANCEL BY 5 PM - RQST-NO FEATHER";
  5. $res = $str;
  6. if (strrpos($str, "SI", -strlen($str)) !== false) { // starts with SI
  7. $arr = explode("#¤", $str);
  8. if (!empty($arr)){
  9. $res = array_pop($arr);
  10. }
  11. }
  12. echo $res;
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
CANCEL BY 5 PM - RQST-NO FEATHER