niXforums Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   PreferencesPreferences   Log in to check your private messagesLog in to check your private messages   Log inLog in 
·  nixdoc.net ·  man pages ·  Linux HOWTOs ·  FreeBSD Tips ·  Forums
navigation Forum index » Programming » shell
How to replace text with Tags?
Post new topic   Reply to topic Page 1 of 1 [3 Posts] View previous topic :: View next topic
Author Message
Ed Morton
*nix forums Guru


Joined: 20 Feb 2005
Posts: 1073

PostPosted: Fri Feb 11, 2005 2:56 pm    Post subject: Re: How to replace text with Tags? Reply with quote

btna wrote:
Quote:
Hi all,
I need to replace text within HTML tags with a space or a tab. How can
I use sed or any other utility to do this?

My file contains something like:

Text to be replaced here> some text < text to be repalced here

The ultimate goal is to have it like this:
some text

Thanks in advance for any ideas,

BTNA


Either of these would do it:

gawk 'BEGIN{FS="<[^>]*>";OFS="< >"}{$1=$1}1'
gawk '{gsub("<[^>]*>","< >")}1'
sed 's/<[^>]*>/< >/g'

Regards,

Ed.
Back to top
Bern
*nix forums beginner


Joined: 08 Mar 2005
Posts: 36

PostPosted: Fri Feb 11, 2005 2:39 pm    Post subject: Re: How to replace text with Tags? Reply with quote

Try this

sed 's/<.*\(>.*<\).*>/< \1 >/' file
Back to top
btna
*nix forums beginner


Joined: 18 Jul 2005
Posts: 13

PostPosted: Fri Feb 11, 2005 2:24 pm    Post subject: How to replace text with Tags? Reply with quote

Hi all,
I need to replace text within HTML tags with a space or a tab. How can
I use sed or any other utility to do this?

My file contains something like:

<Text to be replaced here> some text < text to be repalced here>

The ultimate goal is to have it like this:
< > some text < >

Thanks in advance for any ideas,

BTNA
Back to top
Google

Back to top
Display posts from previous:   
Post new topic   Reply to topic Page 1 of 1 [3 Posts] View previous topic :: View next topic
The time now is Thu Jan 08, 2009 9:58 pm | All times are GMT
navigation Forum index » Programming » shell
Jump to:  

Similar Topics
Topic Author Forum Replies Last Post
No new posts Oracle Text Score Computation jatinder.1975@gmail.com Server 0 Fri Jul 21, 2006 1:00 pm
No new posts PIL - transparent ImageDraw.text() aljosa python 1 Wed Jul 19, 2006 3:43 pm
No new posts user supplied forum text and htmlentities Sandy.Pittendrigh@gmail.c PHP 1 Wed Jul 19, 2006 2:19 pm
No new posts text representation of HTML Ksenia Marasanova python 5 Wed Jul 19, 2006 10:09 am
No new posts Text Summarization Jim Jones python 4 Wed Jul 19, 2006 7:44 am

Fish Tank Help | France Hotels | Discount Magazine Subscriptions | Loans | Latest Credit Cards
Copyright © 2004-2005 DeniX Solutions SRL
 
Other DeniX Solutions sites: Unix/Linux blog |  electronics forum |  medicine forum |  science forum | 
Privacy Policy


Powered by phpBB © 2001, 2005 phpBB Group
[ Time: 0.1116s ][ Queries: 20 (0.0399s) ][ GZIP on - Debug on ]