Jump to content

How do I use substr to remove numbers only?


Jeffro

Recommended Posts

Actually.. I'm assuming I use substr, but feel free to correct me if there's a better way. 

 

I have an ever changing list that I need to knock the from numbers off of.  The numbers can be different lenghts, such as..

 

1. item number 1

12. item number 12

101. item number 101

 

How do I remove the number, period and blank space for each item, since the length of the number may always differ?

 

Thank you!

Link to comment
Share on other sites

you don't want to use substr, you want to use a regular expression.

 

look into preg_replace

 

something like:

<?php

$value = "12345. some some string";
$match = "/^[0-9]. /";
$replace = "";
$value = preg_replace($match,$replace,$value);

?>

 

//this probably won't work 'cause i suck at regex, but someone can come along and fix it :)

Link to comment
Share on other sites

drisate's explode() option is how I probably would have done it since regex is annoying.  the only downside is if your text string may have more than one "." in it.  inwhich case your array will have more than just 2 levels.

 

 

also,

wildteen88 is much better at regex then me :)

Link to comment
Share on other sites

If you use the explode method, you can use the little used third parameter to explode to limit the number of parts returned:

<?php
$strs = array('1. item number 1',
'12. item number 12',
'101. item number 101');
foreach ($strs as $str) {
   list (,$str) = explode('.',$str,2);
   echo ltrim($str) . "<br>\n";
}
?>

 

Ken

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.