Help for this page

Select Code to Download


  1. or download this
    $str = '004asdfsa'; #string starting with zero and followed by numbers
    
    ...
    Output:
    --------
    4asdfsa
    
  2. or download this
    $str = 'a004asdfsa'; #not starting with zero
    
    ...
    Output:
    --------
    a004asdfsa
    
  3. or download this
    $str = '0a4sdfsa'; #no number followed by zero
    
    ...
    Output:
    --------
    0a4sdfsa