Simple Drag-Drop Text File Manipulator

  • Thread starter Thread starter Jelfish
  • Start date Start date
  • Tags Tags
    File Text
Click For Summary
SUMMARY

The discussion focuses on creating a drag-and-drop text file manipulator for Windows that performs specific text manipulations, such as deleting characters and replacing spaces with tabs. Participants recommend using scripting languages like Perl or Python for text manipulation, and suggest tools like AutoHotkey and AutoIt for implementing drag-and-drop functionality. Cygwin is mentioned as a viable option for running Perl and Python in a UNIX-like environment on Windows. The conversation emphasizes the ease of use and flexibility of these tools for automating repetitive text processing tasks.

PREREQUISITES
  • Basic knowledge of programming in C, C++, or Classic Fortran
  • Familiarity with scripting languages such as Perl or Python
  • Understanding of Windows file handling and drag-and-drop functionality
  • Experience with command line operations in a UNIX-like environment (Cygwin)
NEXT STEPS
  • Learn Python for text manipulation and automation tasks
  • Explore AutoHotkey for creating drag-and-drop interfaces
  • Investigate Cygwin for running Perl and Python scripts on Windows
  • Study text processing tools like awk and sed for advanced manipulation
USEFUL FOR

Software developers, data analysts, and anyone looking to automate text file manipulation tasks in Windows environments.

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?
 

Similar threads

  • · Replies 33 ·
2
Replies
33
Views
5K
  • · Replies 41 ·
2
Replies
41
Views
5K
Replies
86
Views
2K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 12 ·
Replies
12
Views
15K
  • · Replies 2 ·
Replies
2
Views
2K