req viewer / editor x delimited files

Discuss and announce Total Commander plugins, addons and other useful tools here, both their usage and their development.

Moderators: Hacker, petermad, Stefan2, white

Post Reply
mduran
Junior Member
Junior Member
Posts: 26
Joined: 2007-02-13, 08:55 UTC

req viewer / editor x delimited files

Post by *mduran »

Hi,

I have a lot of pipe delimited files to work with and I am looking for a simple (not full blown) viewer/ editor of files with content with delimitors (comma, pipes, semicolon...). Please advice. Thanks.
User avatar
majkinetor !
Power Member
Power Member
Posts: 1580
Joined: 2006-01-18, 07:56 UTC
Contact:

Post by *majkinetor ! »

You can convert it to nomrmal csv delimited file

Autohotkey script

Code: Select all

FileRead, text, MyPipeDelimitedFile.txt
Text := RegExReplace( text, "|", ";")
FileAppend, %text% MyCommaDelimitedFile.csv
Run, excell MyCommaDelimitedFile.csv
you can use %0% instead file name to allow later associations of pipe files with this script which will on dbl click run excell.
Habemus majkam!
mduran
Junior Member
Junior Member
Posts: 26
Joined: 2007-02-13, 08:55 UTC

Post by *mduran »

Thanks, but running Excel is exactly what I'm trying to avoid. There are many such pipe delimited files I want to edit and transforming the pipe into comma and sending it to Excel would be too much overkill for me.
User avatar
RID500
Member
Member
Posts: 194
Joined: 2006-11-20, 12:38 UTC

Post by *RID500 »

Isn't "CSV-Viewer by Atlanoff" good for this issue?

wlx_csv_0_6_1.zip wrote: Lister-plugin for TotalCommander

Use this plugin for display CSV-files
(Comma separated columns format)

As delimeter used characters ';' or ',' or '|' or tab
Also you can add your delimeters via registry.
Plugin can autodetect delimeter.

Recommended to use together with
Access Viewer Plugin (wñx_mdb).
/join #TCMD Chat at irc.freenode.net - Today's newbies are tomorrow's experts.
User avatar
tbeu
Power Member
Power Member
Posts: 1354
Joined: 2003-07-04, 07:52 UTC
Location: Germany
Contact:

Post by *tbeu »

What about the CSV lister plugin? It is able to display pipe separated files but not to edit them.
TC plugins: Autodesk 3ds Max / Inventor / Revit Preview, FileInDir, ImageMetaData (JPG Comment/EXIF/IPTC/XMP), MATLAB MAT-file Viewer, Mover, SetFolderDate, Solid Edge Preview, Zip2Zero and more
mduran
Junior Member
Junior Member
Posts: 26
Joined: 2007-02-13, 08:55 UTC

Post by *mduran »

Thanks, this is a good plugin, but no edit possible. :(
Any other out there ?
User avatar
RID500
Member
Member
Posts: 194
Joined: 2006-11-20, 12:38 UTC

Re: req viewer / editor x delimited files

Post by *RID500 »

mduran wrote:Hi,

.....I am looking for a simple viewer/ editor of files ...
What now?
Now you have got an viewer and this isn't good anymore now?
Please ask for what you really want in your initial posts ("i need an editor, not an viewer").
Thanks.
/join #TCMD Chat at irc.freenode.net - Today's newbies are tomorrow's experts.
mduran
Junior Member
Junior Member
Posts: 26
Joined: 2007-02-13, 08:55 UTC

Post by *mduran »

I'm sorry but I think I made this clear in my initial post
...I am looking for a simple (not full blown) viewer/ editor of files with content with delimitors...
User avatar
majkinetor !
Power Member
Power Member
Posts: 1580
Joined: 2006-01-18, 07:56 UTC
Contact:

Post by *majkinetor ! »

/join #TCMD Chat at irc.freenode.net - Today's newbies are tomorrow's experts.
ROFL.

Is this the place that Sir_Silva is visiting too ?

If, so, great, I will join today, I need something to relax me. :D
Habemus majkam!
Post Reply