stripping out all characters from a string, leaving numbers

后端 未结 4 511
星月不相逢
星月不相逢 2020-12-09 09:18

Hay, i have a string like this:

v8gn5.8gnr4nggb58gng.g95h58g.n48fn49t.t8t8t57

I want to strip out all the characters leaving just numbers (

相关标签:
4条回答
  • 2020-12-09 09:26
    $str = preg_replace('/[^0-9.]+/', '', $str);
    

    replace substrings that do not consist of digits or . with nothing.

    0 讨论(0)
  • 2020-12-09 09:28

    To satisfy my curiosity I asked about the speed of the proposed answers and as shown in preg_replace speed optimisation/ it is (much) faster to use str_replace() than preg_replace().

    So you might want to use str_replace() instead.

    0 讨论(0)
  • 2020-12-09 09:29
    preg_replace('/[^0-9.]/', '', $string);
    
    0 讨论(0)
  • 2020-12-09 09:44
    $input = 'some str1ng 234';
    $newString = preg_replace("/[^0-9.]/", '', $input);
    
    0 讨论(0)
提交回复
热议问题