Current location: Hot Scripts Forums » Programming Languages » PHP » Simple text change


Simple text change

Reply
  #1 (permalink)  
Old 12-21-11, 12:47 AM
Golith Golith is offline
Newbie Coder
 
Join Date: Jun 2010
Posts: 87
Thanks: 6
Thanked 1 Time in 1 Post
Simple text change

Hi ppl,
i just got some data in a csv file.
Quote:
1896-10-26,51,0,0,51.72
I am trying to get the date to look like this 10/26/1896 - US date format

any quick PHP solution to look at the comma deliminated csv file and change it would be appreciated. There is litteraly over 10,000 lines so doing it by hand before uploading to my db is quired

regards
Scot

I kno its simple i just forgot how and have to much going on to sit down and figure it out.
__________________
Its My script and I'll if I want to
www.cictradinggroup.com.au
Reply With Quote
  #2 (permalink)  
Old 12-22-11, 03:59 AM
alxkls alxkls is offline
Newbie Coder
 
Join Date: Nov 2011
Posts: 98
Thanks: 0
Thanked 9 Times in 9 Posts
this might give you a head start:
Code:
$values=preg_split('/(,)(\d+)(,)(\d+)(,)(\d+)(,)(\d+)(\.)(\d+)/is', '1896-10-26,51,0,0,51.72');
$real_date = explode('-', $values[0]);
$real_date=$real_date[1].'/'.$real_date[2].'/'.$real_date[0];
echo $real_date;
Reply With Quote
  #3 (permalink)  
Old 12-24-11, 11:53 PM
Golith Golith is offline
Newbie Coder
 
Join Date: Jun 2010
Posts: 87
Thanks: 6
Thanked 1 Time in 1 Post
ty for the reply .. it does work well.
Merry Xmas
__________________
Its My script and I'll if I want to
www.cictradinggroup.com.au
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
change the text color mathan PHP 4 11-06-08 02:42 AM
How to change text to array? Hamed PHP 14 08-29-08 02:55 AM
Simple Question on Text Altering nova912 JavaScript 1 05-13-06 08:11 AM
Simple Text Based Poll Riboflavin Script Requests 0 05-22-05 10:08 PM
How to change text dynamically with image? rabbit51 Script Requests 0 02-07-04 12:14 PM


All times are GMT -5. The time now is 08:59 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.