The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
sed to remove 1st two characters every line of text file ajp7701 Shell Programming and Scripting 20 06-09-2009 04:06 PM
Need to remove few characters from each line till a pattern is matched kiranlalka Shell Programming and Scripting 4 05-19-2009 03:31 AM
remove new line characters from a partcular column data sureshg_sampat Shell Programming and Scripting 1 02-23-2009 10:04 AM
sed remove last 10 characters of a line start from 3rd line minifish Shell Programming and Scripting 7 03-26-2008 04:42 PM
how to remove line greater then 3000 characters. naren_14 UNIX for Advanced & Expert Users 10 06-15-2005 11:00 PM

Reply
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 06-30-2009
Gussifinknottle Gussifinknottle is offline
Registered User
  
 

Join Date: Jan 2009
Posts: 16
Question remove characters from line

Hello,

I have multiple lines in a file, each of which will have data that looks like this:

xxxxxyyyyzzzz4abcdXYZXYZXYZ
pqrstPQRST2cdPQRSTPQRST
lmnopqr6abcdefgRST.3abc

I want to be able to remove the number 4 + the following 4 characters (abcd) in the first line.

For the second line, I want to be able to remove 2 + the following 2 characters (cd)

Basically, remove the number and the number of characters matching the number removed.

Any suggestions?

Thanks,
G.
  #2 (permalink)  
Old 06-30-2009
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,116
might be a bit lengthy, but.,
Code:
nawk -f gus.awk myFile
gus.awk:
Code:
{
  while( match($0, "[0-9][0-9]*")) {
    len=substr($0, RSTART, RLENGTH)
    for(i=1;i<=len;i++) rep=(i==1)?".":rep "."
    sub(len rep, "")
  }
}
1

Last edited by vgersh99; 06-30-2009 at 02:30 PM..
Sponsored Links
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 01:40 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0