Jump to content

How to Remove everything but...


me102

Recommended Posts

Try something like:

<?php
$letters = array("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z");
$str = strtolower("WER.234.WER.werRET.4");
$string = str_replace($letters, "", $str);

echo $string; //Should echo .234...4
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.