extract date portion from file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting extract date portion from file
# 1  
Old 10-06-2006
extract date portion from file

Hi,

I have a file where there is a date field (single line variable length file)

how to extract just the date portion from it

the position of date field may vary anywhere in the line
but will always have the format mm-dd-yyyy

for eg .

xxxxxxxxxxxxxxx09-10-2006xxxxxxxxxxxxxxxxxxxx
# 2  
Old 10-06-2006
Try this..

Code:
$ echo "xxxxxxxxxxxxxxx09-10-2006xxxxxxxxxxxxxxxxxxxx" | sed 's/^.*\([0-9]\{2\}-[0-9]\{2\}-[0-9]\{4\}\).*$/\1/'
09-10-2006

# 3  
Old 10-06-2006
Hi Mona

The date which i gave was just for example
it may be any date in general so i cannot hardcode; all i know is the format will be the same
# 4  
Old 10-06-2006
Python alternative:

Code:
import time
mm,yy = time.strftime("%m,%Y",time.localtime()).split(",")
s[ s.find(mm) : s.find(yy) + len(yy) ]


Last edited by ghostdog74; 10-06-2006 at 10:42 AM..
# 5  
Old 10-06-2006
as i mentioned the date given was just an example
It will be any date in general; so cannot hardcode
# 6  
Old 10-06-2006
Quote:
Originally Posted by misenkiser
Hi Mona

The date which i gave was just for example
it may be any date in general so i cannot hardcode; all i know is the format will be the same
No where i have hard coded the date in my solution. If the format MM-DD-YYYY occurs anywhere in the line then it will output.

Code:
$ cat samp
xxxxxxxxxxxxxxx09-10-2006xxxxxxxxxxxxxxxxxxxx
sfsd12-12-2007dfdfd
08-30-2003dfdfdfdf
fgfgfgf01-01-2001
$ sed 's/^.*\([0-9]\{2\}-[0-9]\{2\}-[0-9]\{4\}\).*$/\1/' samp
09-10-2006
12-12-2007
08-30-2003
01-01-2001
$

HTH,
Mona
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Extract a portion of string from each line in Linux

Hi I have to extract the destination path information from each record the file is of variable length so I will not be able to use the print command.The search should start on variable "destinationPath" and it should end at immediate "," also the first field has to be printed Input File:... (7 Replies)
Discussion started by: rkakitapalli
7 Replies

2. Shell Programming and Scripting

Extract portion of data

Hi Gurus, I need some help in extracting some of these information and massage it into the desired output as shown below. I need to extract the last row with the header in below sample which is usually the most recent date, for example: 2012-06-01 142356 mb 519 -219406 mb 1 ... (9 Replies)
Discussion started by: superHonda123
9 Replies

3. Shell Programming and Scripting

How to extract portion of a string?

Hi Gurus, Would like to seek some help on how to extract a portion of string from log's output as shown below. Sample of raw data: piece handle=/test123/disk_dump/test123/df0_cntrl_PCPFCI20120404_68498 tag=TAG20120404T180035 comment=NONE piece... (13 Replies)
Discussion started by: superHonda123
13 Replies

4. UNIX for Dummies Questions & Answers

Remove the date portion from file name

hi, I am trying to remove the last field before the period (.) from a list of file names in a directory in a shell script. Below is the list of file names. ENVID_archival_20120214092258.log ENVID_Get_Source_Files_20120214091828.log ENVID_Get_Source_Files_20120214092523.log... (6 Replies)
Discussion started by: Vijay81
6 Replies

5. Shell Programming and Scripting

Extract portion of log info based on specific word

Hi Gurus, I'm using HP-UX B.11.23 operating system. I've been trying to extract a specific wording for example: "A tool used by tp produced warnings" from my below log data, but could not find a way to solve it. My intention is, if the log contain the word: "A tool used by tp produced... (9 Replies)
Discussion started by: superHonda123
9 Replies

6. Shell Programming and Scripting

How to extract a text portion from a file

Can some one help me with shell script to extract a text block between two known strings. The given input file is as below: Name: abs Some tesxt.... Some tesxt.... Some tesxt.... end of text Name: xyz Some tesxt.... Some tesxt.... Some tesxt.... end of text Name: efg Some... (5 Replies)
Discussion started by: ejazs0
5 Replies

7. Shell Programming and Scripting

extract string portion from filename using sed

Hi All, I posted something similar before but I now have a another problem. I have filenames as below TOP_TABIN240_20090323.200903231830 TOP_TABIN235_1_20090323.200903231830 i need to extract the dates as in bold. Using bash v 3.xx Im trying to using the print sed command but... (11 Replies)
Discussion started by: santam
11 Replies

8. Shell Programming and Scripting

extract string portion using sed

Hi All I have 3 files as listed below and highlighted in bold the portions of the filenames I need to extract: TOS_TABIN218_20090323.200903231830 TOS_TABIN219_1_20090323.200903231830 TOS_TABIN219_2_20090323.200903231830 I tried source_tabin_name=`echo $fname | sed 's/_.*//'` but I... (6 Replies)
Discussion started by: santam
6 Replies

9. UNIX for Dummies Questions & Answers

How to extract a portion of text from a log file

I am using Unix on Mac OS X 10.5.6. I am trying to extract the last entry of a log (text) file. As seen below, each log entry looks like the following (date and time change with each log entry): I want the script to extract everything quoted above, including the "===" dividers. ... (2 Replies)
Discussion started by: atilano
2 Replies

10. Shell Programming and Scripting

extract a portion of log file

hello, I want to grep the log file according to time and get the portion of log from one particular time to other. I can grep for individual lines by time but how should I print lines continuously from given start time till end till given end time. Appreciate your ideas, Thanks chandra (8 Replies)
Discussion started by: chandra004
8 Replies
Login or Register to Ask a Question