Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

AWK text grab

Original Message
Name: user57
Date: March 31, 2008 at 02:28:38 Pacific
Subject: AWK text grab
OS: AIX 5.3
CPU/Ram: 1.9/9
Model/Manufacturer: IBM/550
Comment:
I'm looking for an awk routine to print lines between the characters "[" and "]"

Input file:
AAAAAA[grab this bit]AAAAAAA
[grab this bit]BBBBBBB
CCCCCCCCC[ grab this
bit]DDDDDDDDDDD
[grab this bit]

Desired output:
grab this bit
grab this bit
grab this bit
grab this bit

Could anyone assist please?


Report Offensive Message For Removal


Response Number 1
Name: ghostdog
Date: March 31, 2008 at 02:52:41 Pacific
Subject: AWK text grab
Reply: (edit)
considering you are using AIX, and tested only with your sample input

awk '
/\[/ && /\]/{
match($0,/\[/)
s=RSTART
match($0,/\]/)
e=RSTART
print substr($0,s+1,e-s-1)
}
/\[/ && !/\]/ {
match($0,/\[/)
printf "%s " ,substr($0,RSTART+1)
s=RSTART
getline
match($0,/\]/)
e=RSTART
print substr($0,0,e-1)
}' file

output:


# ./test.sh
grab this bit
grab this bit
grab this bit
grab this bit



Report Offensive Follow Up For Removal

Response Number 2
Name: user57
Date: March 31, 2008 at 03:42:58 Pacific
Subject: AWK text grab
Reply: (edit)
Many thanks. That's an interesting solution.

Report Offensive Follow Up For Removal




Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: AWK text grab

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software




Slow boot time

Trasnferring Documents from old HD

My k8T Neo-v usb's aren't working!

Date Modified = Date Created Time

system files on removable harddrive


The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC