Simple Drag-Drop Text File Manipulator

  • Thread starter Thread starter Jelfish
  • Start date Start date
  • Tags Tags
    File Text
AI Thread Summary
The discussion centers on creating a program for Windows that allows users to drag and drop text files for automated manipulation, such as deleting specific text and replacing spaces with tabs. The user is seeking guidance on how to develop this program, expressing familiarity with C, Classic Fortran, and some C++, but lacking experience in creating such applications. Suggestions include using scripting languages like Perl or Python for text manipulation, as they are effective and widely supported. For implementing drag-and-drop functionality, tools like AutoHotkey or AutoIt are recommended, which can integrate with the scripts. Additionally, the use of Cygwin is mentioned for accessing Perl and Python in a UNIX-like environment, along with the potential of using command-line utilities like awk and sed for text processing. The conversation highlights the learning opportunity presented by Python for this task.
Jelfish
Messages
147
Reaction score
5
Hi

Sorry for the ambiguous title.

I am looking to write a program that, upon dragging and dropping a text file onto it in Windows, it will do some pre-determined manipulation to the text, like deleting a certain amount in the beginning, replacing spaces with tabs, etc.

If you couldn't guess, I'm working with a machine that outputs data in a difficult to use format with a lot of unneeded information. I want to be able to make a program that can quickly manipulate that data and get it into a form I can stick in Excel or Matlab. I've been doing it manually and it's a real pain, especially when I know a program could do it.

I've seen such programs before, but I don't know how to make them myself. I know C, Classic Fortran (70) and some C++, though I'm a bit rusty.

If anyone knows the easiest way to make something like this, or perhaps point me in the direction of instructions or even example code, I would most appreciate it.

Thanks in advance.

Jel
 
Technology news on Phys.org
A script in Perl or Python might be the best for the text manipulation.
Usually, one invokes this on the command line. You'll have to install a Perl or Python package.

In Windows, you can choose to open some filetypes with programs of your choosing... in addition to the default application.

If you truly want drag and drop (as opposed to right-clicking and selecting the alternate application via "Open with..."), you can try to use something that provides you with some of those GUI features, like http://www.autohotkey.com/ or http://www.autoitscript.com/autoit3/, which could call the Perl or Python script.

There are surely other methods (e.g. Visual BASIC, VBscript, Java, Javascript, etc...).. but the above tools are free, easy (for me) to use, and useful for lots of other general purpose tasks. (Cygwin provides Perl and Python packages in a UNIX-like environment... but Cygwin requires a substantial installation and some setup. Cygwin is great!)
 
Last edited by a moderator:
I actually have cygwin on my computer already so I might try it out. I've been considering learning Python. Thanks for the tips!
 
Since you have cygwin, you might also consider awk and sed. It really depends on the nature of your text manipulations.

I agree that this would be a great opportunity to learn some Python.
 
When you drop and drag an item into a program, doesn't it use that as an argument to that program?
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Thread 'Project Documentation'
Trying to package up a small bank account manager project that I have been tempering on for a while. One that is certainly worth something to me. Although I have created methods to whip up quick documents with all fields and properties. I would like something better to reference in order to express the mechanical functions. It is unclear to me about any standardized format for code documentation that exists. I have tried object orientated diagrams with shapes to try and express the...

Similar threads

Replies
33
Views
5K
Replies
41
Views
5K
Replies
1
Views
3K
Replies
1
Views
2K
Replies
12
Views
15K
Replies
2
Views
2K
Back
Top