Sponsored Content
Top Forums Shell Programming and Scripting Remove all junk characters from a text file Post 302879210 by Talari on Wednesday 11th of December 2013 09:36:31 AM
Old 12-11-2013
Remove all junk characters from a text file

I am using flatfile, in that flat file we are getting the junk chars

1)I21001f<82>^Me<85>!h49 Service Charge

2) I21001f‚
e...!h49 Service Charge

please tell me how to remove all junk chars in unix scripts.
 

10 More Discussions You Might Find Interesting

1. Solaris

Junk characters in file not in Solaris, but visible in linux

Hello All, I have a DOS file which I run a DOS 2 UNIX utility on. When run from Solaris, I can view the file perfectly. But, when run from linux, I see a bunch of junk(^@) at the beginning of every line in the file. Does anyone know the cause of this? COMMAND TO CONVERT: tr -d '\015\032'... (7 Replies)
Discussion started by: vada010
7 Replies

2. Shell Programming and Scripting

Reading a file having junk characters in perl

Can anyone tell me how to read a file in perl having junk characters . I have only one junk character which is repeated many times in the file. While i'm reading and printing the file , it is displaying till the 1st occurence of that junk character and rest of the file is not being read. (1 Reply)
Discussion started by: k_surya
1 Replies

3. Shell Programming and Scripting

sed to remove 1st two characters every line of text file

what is the sed command to remove the first two characters of every line of a text file? each line of the text file has the same amount of characters, and they are ALL NUMERIC. there are hundreds of lines though. for example, >cat file1.txt 10081551 10081599 10082234 10082259 20081134... (20 Replies)
Discussion started by: ajp7701
20 Replies

4. Shell Programming and Scripting

Remove junk characters using Perl

Guys, can you help me in removing the junk character "^S" from the below line using perl Reference Data Not Recognised ^S Where a value is provided by the consuming system, which is not reco Thanks, M.Mohan (1 Reply)
Discussion started by: mohan_xunil
1 Replies

5. Shell Programming and Scripting

Remove special characters from text file

Hi All, i am trying to remove all special charecters().,/\~!@#%^$*&^_- and others from a tab delimited file. I am using the following code. while read LINE do echo $LINE | tr -d '=;:`"<>,./?!@#$%^&(){}'|tr -d "-"|tr -d "'" | tr -d "_" done < trial.txt > output.txt Problem ... (10 Replies)
Discussion started by: kkb
10 Replies

6. UNIX for Dummies Questions & Answers

XML file shows Junk Characters in UNIX

Hello sir, I have generated XML file from VS 2005. It works well in windows but it shows some junk characters in unix. Can any help me with this problem. Thank you in advance. Hema (6 Replies)
Discussion started by: hemavenkatesh
6 Replies

7. UNIX for Dummies Questions & Answers

how to grep junk characters in a file

hi guys, I am generating a file from datastage (an etl tool). Now the file is having some junk characters like ( Á,L´±,ñ and so on).. I want to use the grep function to figure out all the junk characters and their location. Can somebody help me out in finding it out.. if possible i... (1 Reply)
Discussion started by: mac4rfree
1 Replies

8. UNIX for Dummies Questions & Answers

How to remove JUNK characters (FROM�)

Hi I have to remove the junk characters from my file. Please help.. File content : CURITY_CODE_GSD) FROM� DL_CB_SOD_EOD_VALUATION WHERE� ASOF (1 Reply)
Discussion started by: arukuku
1 Replies

9. UNIX for Dummies Questions & Answers

How to replace and remove few junk characters from a specific field?

I would like to remove all characters starting with "%" and ending with ")" in the 4th field - please help!! 1412007819.864 /device/services/heartbeatxx 204 0.547%!i(int=0) 0.434 0.112 1412007819.866 /device/services/heartbeatxx 204 0.547%!i(int=1) 0.423 0.123... (10 Replies)
Discussion started by: snemuk14
10 Replies

10. UNIX for Beginners Questions & Answers

Need to remove Junk characters

Hi All, I have a issue that we are getting Junk characters from source and i am not able to load that records to Database. Line breakers Junk Characters (Â and different every time) Japanese Characters Every time I am using grep command and awk -F "\007" to find them and delete that... (1 Reply)
Discussion started by: spradeep86
1 Replies
Gtk2::EntryBuffer(3pm)					User Contributed Perl Documentation				    Gtk2::EntryBuffer(3pm)

NAME
Gtk2::EntryBuffer - wrapper for GtkEntryBuffer HIERARCHY
Glib::Object +----Gtk2::EntryBuffer The Gtk2::EntryBuffer class contains the actual text displayed in a Gtk2::Entry widget. A single Gtk2::EntryBuffer object can be shared by multiple Gtk2::Entry widgets which will then share the same text content, but not the cursor position, visibility attributes, icon etc. Gtk2::EntryBuffer may be derived from. Such a derived class might allow text to be stored in an alternate location, such as non-pageable memory, useful in the case of important passwords. Or a derived class could integrate with an application's concept of undo/redo. METHODS
entrybuffer = Gtk2::EntryBuffer->new ($initial_chars=undef) o $initial_chars (string) unsigned = $buffer->get_bytes integer = $buffer->delete_text ($position=0, $n_chars=-1) o $position (integer) o $n_chars (integer) $buffer->emit_deleted_text ($position, $n_chars) o $position (integer) o $n_chars (integer) $buffer->emit_inserted_text ($position, $chars, $n_chars) o $position (integer) o $chars (string) o $n_chars (integer) $buffer->insert_text ($position, $chars) o $position (integer) o $chars (string) integer = $buffer->get_length integer = $buffer->get_max_length $buffer->set_max_length ($max_length) o $max_length (integer) string = $buffer->get_text $buffer->set_text ($chars) o $chars (string) PROPERTIES
'length' (Glib::UInt : default 0 : readable / private) Length of the text currently in the buffer 'max-length' (integer : default 0 : readable / writable / private) Maximum number of characters for this entry. Zero if no maximum 'text' (string : default "" : readable / writable / private) The contents of the buffer SIGNALS
inserted-text (Gtk2::EntryBuffer, Glib::UInt, string, Glib::UInt) deleted-text (Gtk2::EntryBuffer, Glib::UInt, Glib::UInt) SEE ALSO
Gtk2, Glib::Object COPYRIGHT
Copyright (C) 2003-2011 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.14.2 2012-05-27 Gtk2::EntryBuffer(3pm)
All times are GMT -4. The time now is 10:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy