Sponsored Content
Top Forums Shell Programming and Scripting Search and Replace by record position Post 302570098 by macastor on Wednesday 2nd of November 2011 11:30:22 AM
Old 11-02-2011
Thanks again CarloM, but now lets say I change "PHOENIX" to "LAS VEGAS" it separates "LAS" as a 20 characters and "VEGAS" as the next 20 characters. Sorry to keep making this harder than what it probably is... Smilie

Code:
a="BRAD PIT"
b="LAS VEGAS"
c="`(printf %-20s $b)`"

sed "/${a}/s/^\(.\{32\}\).\{11\}/\1${c}/" infile

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Add 'ENDEND' on end of each record at position is 14-20

I have file format like below and I'm trying to modify this file. I need to add 'ENDEND' end of each record. 01 ASH01 1CTCTL EDPPOO STAND 01 ASH08 0020 A1TH 101 01 ASH09 0022 A1TH 102 01 ASH09 0022 A1TH 103 01 ASH02 2CTCTL ... (5 Replies)
Discussion started by: naveenkcl
5 Replies

2. Shell Programming and Scripting

Search for a string and replace the searched string in the same position

Hi All, My requisite is to search for the string "0108"(which is the year and has come in the wrong year format) in a particular column say 4th column in a tab delimited file and then replace it with 2008(the correct year format) in the same position where 0108 was found..The issue is the last... (15 Replies)
Discussion started by: ganesh_248
15 Replies

3. UNIX for Dummies Questions & Answers

Search for a string and replace the searched string in the same position in samefile

Hi All, My requisite is to search for the string "0108"(which is the year and has come in the wrong year format) in a particular column say 4th column in a tab delimited file and then replace it with 2008(the correct year format) in the same position where 0108 was found in the same file..The... (27 Replies)
Discussion started by: ganesh_248
27 Replies

4. Shell Programming and Scripting

search and replace fixed length record file

Hi I need to be search a file of fixed length records and when I hit a particular record that match a search string, substitute a known position field In the example file below FHEAD000000000120090806143011 THEAD0000000002Y0000000012 P00000000000000001234 TTAIL0000000003... (0 Replies)
Discussion started by: nedkelly007
0 Replies

5. UNIX for Dummies Questions & Answers

Search a string in the file and then replace another string after that position

Hi I am looking for a particular string in a file.If the string exists, then I want to replace another string with some other text.Once replaced, search for the same text after that character position in the file. :wall: E.g: Actual File content: Hello Name: Nitin Raj Welcome to Unix... (4 Replies)
Discussion started by: dashing201
4 Replies

6. Shell Programming and Scripting

Extract timestamp from first record in xml file and it checks if not it will replace first record

I have test.xml <emp><id>101</id><name>AAA</name><date>06/06/14 1811</date></emp> <Join><id>101</id><city>london</city><date>06/06/14 2011</date></join> <Join><id>101</id><city>new york</city><date>06/06/14 1811</date></join> <Join><id>101</id><city>sydney</city><date>06/06/14... (2 Replies)
Discussion started by: vsraju
2 Replies

7. Shell Programming and Scripting

Search for a string at a particular position and replace with blank based on position

Hi, I have a file with multiple lines(fixed width dat file). I want to search for '02' in the positions 45-46 and if available, in that lines, I need to replace value in position 359 with blank. As I am new to unix, I am not able to figure out how to do this. Can you please help me to achieve... (9 Replies)
Discussion started by: Pradhikshan
9 Replies

8. Shell Programming and Scripting

Replace a string for every record after the 1st record

I have data coming in the below format for each record <?xml version="1.0" encoding="UTF-8" standalone="no"?><test_sox xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><testdetials>....</test_sox> <?xml version="1.0" encoding="UTF-8" standalone="no"?><test_sox... (8 Replies)
Discussion started by: dsravanam
8 Replies

9. Post Here to Contact Site Administrators and Moderators

Search for a pattern and replace a space at specific position with a Character in File

In file, we have millions of records each of 1000 in length. And at specific position say 800 there is a space, we need to replace it with Character X if the ID in that row starts with 123. So far i have used the below which is replacing space at that position to X but its not checking for... (3 Replies)
Discussion started by: Jagmeet Singh
3 Replies

10. UNIX for Beginners Questions & Answers

Shift record from one position to another

Hi All, I have a file and it is a fixed length file. I want to move the values from 42,6 ( where 6 is length) to the 36th position Original file: 00000100000100000100000100000100001 000870 ... (3 Replies)
Discussion started by: arunkumar_mca
3 Replies
Xapian::Document(3pm)					User Contributed Perl Documentation				     Xapian::Document(3pm)

NAME
Search::Xapian::Document - Document object DESCRIPTION
This class represents a document in a Xapian database. METHODS
new Class constructor. clone Return a clone of this class. get_value (value_no) Returns the value by the assigned number. add_value <value_no> <value> Set a value by value number. remove_value <value_no> Removes the value with the assigned number. clear_values Clear all set values. get_data Return all document data. set_data <data> Set all document data. This can be anything you like. add_posting <term> <position> [<weight>] Adds a term at the given position. weight defaults to 1. remove_posting <term> <position> [<weight] Removes a term from the given position. weight defaults to 1. add_term <term> [<weight>] Adds a term without positional information. weight defaults to 1. add_boolean_term <term> Adds a term intended for boolean filtering (its wdf contribution will be 0). remove_term <term> Removes a term without positional information. clear_terms Remove all terms from the document. termlist_count Returns number of terms in the document. termlist_begin Iterator for the terms in this document. Returns a Search::Xapian::TermIterator. termlist_end Equivalent end iterator for termlist_begin(). Returns a Search::Xapian::TermIterator. values_count Return number of defined values for this document. values_begin Return a Search::Xapian::ValueIterator pointing at the start of the values in this document. values_end Return a Search::Xapian::ValueIterator pointing at the end of the values in this document. get_description Return a description of this object. SEE ALSO
Search::Xapian::Database perl v5.14.2 2012-05-09 Xapian::Document(3pm)
All times are GMT -4. The time now is 05:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy