Delete new line

 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Delete new line
# 1  
Old 08-22-2017
Delete new line

Hello All,

I have a file with records in delimited format with delimiter '^', there is a new line character in between data and causing issues while reading, any inputs in deleting new line character please?

Example:

Code:
Rec^IdealLoc^PersonID:118743^Long Description
\n
^7364563^4837567456^Long Description 
\n
^847653
Rec^City^PersonID:847565^Longdescription^523344^32564237645^LongD

Desired Output:
Code:
Rec^IdealLoc^PersonID:118743^Long Description^364563^4837567456^Long Description^847653
Rec^City^PersonID:847565^Longdescription^523344^32564237645^LongD


Moderator's Comments:
Mod Comment Please use CODE tags as required by forum rules!

Last edited by RudiC; 08-22-2017 at 12:11 PM.. Reason: Added CODE tags.
# 2  
Old 08-22-2017
You are saying that there are extra <NL> chars in the file, on top of the usual ones, i.e. line terminators at the end-of-line?
# 3  
Old 08-22-2017
Quote:
Originally Posted by RudiC
You are saying that there are extra <NL> chars in the file, on top of the usual ones, i.e. line terminators at the end-of-line?
Yes, I used '\n' just to imply new line
# 4  
Old 08-22-2017
So you have legit newline characters in your file and illegit newline characters in your file.

So the first thing to do is to find out if there is a difference between the two because, if there isn't, how do you know which one's to delete?

Can you look at the file with a hex editor to actually see the ASCII value of the rogue characters? (Perhaps even ftp the file to another system (binary transfer) to use a hex editor on it.)

If there's a difference between legit and illegit characters then it must be possible to blow the illegit's away; but we need to know that first.
# 5  
Old 08-22-2017
With that sparse specification, limited sample extent, just guessing the record structure (8 fields) and assuming the second record to be incomplete, how about
Code:
awk -F^ '{while (NF <= 7 && 1 == getline X) $0 = $0 X} 1' file
Rec^IdealLoc^PersonID:118743^Long Description^7364563^4837567456^Long Description^847653
Rec^City^PersonID:847565^Longdescription^523344^32564237645^LongD

This User Gave Thanks to RudiC For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Mismatched free() / delete / delete [] line no missing

Could you tell me the possibilities of the reason to get the Mismatched free() / delete / delete . I unable to see the line no in the valgrind report. it displays the function name. with that function name, I am not able to find where exactly the issue is there.I am getting the Mismatched free()... (3 Replies)
Discussion started by: SA_Palani
3 Replies

2. UNIX for Dummies Questions & Answers

Script to delete files line by line in .txt document

Friends, I am in need to delete files from a directory on a regular basis. I want to place all the files to be deleted in delete .txt file and require a script to delete files, line by line from this delete.txt file. Please help me with this script as am new to unix scripting. (3 Replies)
Discussion started by: fop4658
3 Replies

3. UNIX for Advanced & Expert Users

How to find a string in a line in UNIX file and delete that line and previous 3 lines ?

Hi , i have a file with data as below.This is same file. But actual file contains to many rows. i want to search for a string "Field 039 00" and delete that line and previous 3 lines in that file.. Can some body suggested me how can i do using either sed or awk command ? Field 004... (7 Replies)
Discussion started by: vadlamudy
7 Replies

4. Shell Programming and Scripting

sed command to grep multiple pattern present in single line and delete that line

here is what i want to achieve.. i have a file with below contents cat fileName blah blah blah . .DROP this REJECT that . --sport 7800 -j REJECT --reject-with icmp-port-unreachable --dport 7800 -j REJECT --reject-with icmp-port-unreachable . . . more blah blah blah --dport 3306... (14 Replies)
Discussion started by: vivek d r
14 Replies

5. Shell Programming and Scripting

Delete line with match and previous line quoting/escaping problem

Hi folks, I've list of LDAP records in this format: cat cmmac.export.tmp2 dn: deviceId=0a92746a54tbmd34b05758900131136a506,ou=devices,ou=customer,ou=nl,o=upc cmmac: 00:13:11:36:a5:06 dn: deviceId=0a92746a62pbms4662299650015961cfa23,ou=devices,ou=customer,ou=nl,o=upc cmmac:... (4 Replies)
Discussion started by: tomas.polak
4 Replies

6. Shell Programming and Scripting

Find specific line and delete line after.

I'm looking for a way to search a file, in this case init.rc for a specific match, service adbd /sbin/adbd, and delete the a specific line after it Original: # adbd is controlled by the persist.service.adb.enable system property service adbd /sbin/adbd disabled After deletion: #... (5 Replies)
Discussion started by: GabrialDestruir
5 Replies

7. Shell Programming and Scripting

Sed or Grep to delete line containing patter plus extra line

I'm new to using sed and grep commands, but have found them extremely useful. However I am having a hard time figuring this one out: Delete every line containing the word CEN and the next line as well. ie. test.txt blue 324 CEN green red blue 324 CEN green red blue to produce:... (2 Replies)
Discussion started by: rocketman88
2 Replies

8. Shell Programming and Scripting

sed: delete regex line and next line if blank

Hi, I want to write a sed script which from batiato: batiato/giubbe: pip_b.2.txt pip_b.3.txt pip_b.3mmm.txt bennato: bennato/peterpan: 123.txt consoli: pip_a.12.txt daniele: (2 Replies)
Discussion started by: one71
2 Replies

9. Shell Programming and Scripting

how to delete text from line starting pattern1 up to line before pattern2?

My data is xml'ish (here is an excerpt) :- <bag name="mybag1" version="1.0"/> <contents id="coins"/> <bag name="mybag2" version="1.1"/> <contents id="clothes"/> <contents id="shoes"/> <bag name="mybag3" version="1.6"/> I want to delete line containing mybag2 and its subsequent... (5 Replies)
Discussion started by: repudi8or
5 Replies

10. UNIX for Dummies Questions & Answers

how to delete line with matching text and line immediately after

hello experts, I have a file: File1 Sample Test1 This is a Test Sample Test2 Another Test Final Test3 A final Test I can use sed to delete the line with specific text ie: sed '/Test2/d' File1.txt > File2.txt How can I delete the line with the matching text and the line immediately... (6 Replies)
Discussion started by: orahi001
6 Replies
Login or Register to Ask a Question