Jump to content

[SOLVED] Changing 8 2009 to just 8


HoTDaWg

Recommended Posts

hi there

 

i get a feeling this is a really stupid question and i apologize for not trying harder to figure it out, i just cant get my head around it and my deadline is slowly winding down.

 

im trying to replace a string such as "8 2009" (or "12 2009") to just "8" here is what i have been experimenting with, but i cant seem to get it right:

<?php
$thatmonth = "8 2009";
preg_replace('/^[\d]+[\s\d]+$/','/^[\d]+$/',$thatmonth)
?>

 

any help would be greatly appreciated, thanks

 

HoTDaWg

Link to comment
Share on other sites

If that is your entire string you can simply use string indexes.

 

$thatmonth = "8 2009";
echo $thatmonth[0];

 

That would work on single digit months... but in the event of double digits, you would have to know that there are two digits and echo out the first two indexes... based on the same assumptions (that the string only consists the format of month[space]year), sscanf comes to mind on this one for me:

 

$thatmonth = "12 2009";
sscanf($thatmonth, '%d', $month);
echo $month; // 12

Link to comment
Share on other sites

What are string indexes? I've worked with them in Python, but I didn't know they existed in PHP

 

Well, a string is a series of charactes of which are stored in indexes..

 

Example:

$str = 'cat';
echo $str[0] . "<br />\n"; // output: c
echo $str[1] . "<br />\n"; // output: a
echo $str[2] . "<br />\n"; // output: t

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.