Questions tagged [textpad]

TextPad is a general-purpose text editor.

TextPad is a general-purpose text editor for Microsoft Windows, published by Helios Software Solutions.

146 questions
0
votes
0 answers

I need to find the average of a set of test scores, but need to drop the lowest

I am programming fundamentals right now, and have an assignment that asks for the average of assignment grades. I have to drop the lowest grade, but am not sure how to do that part. The most recent thing we've learned so far is a "do loop", but I…
Kitty
  • 1
0
votes
1 answer

Using TextPad to search for multiple strings containing vertical bars

all. I'm using TextPad and I am having difficulty finding answers on how to search for multiple expressions that each contain the vertical bar character. Specifically, what I would like to do is search multiple documents for any of the following…
0
votes
2 answers

Open a wav file to read data in text editor vs in sndfile

I want to read the data of an 8bit wav file using textPad, I know that the data is located at the 44/46th byte, but I am having problems reading it. I have that code: 52 49 46 46 F8 37 01 00 57 41 56 45 66 6D 74 20 12 00 00 00 06 00 01 00 40 1F 00…
0
votes
1 answer

Remove 8 char, save 4, remove 4, save 4, replace 1 and keep rest of the line

In every line I would like to: remove char 1-8 (8) save char 9-12 (4) remove char 13-16 (4) save char 17-20 (4) replace char 21 (1) with space keep the rest of line and then do it for every line I have started with: ^.{8}(.{4}).{4} Is it…
KiAnKo
  • 71
  • 1
  • 8
0
votes
2 answers

How to find and wrap text / sentences on HTML file with TextPad

How can I wrap text or sentences on HTML file with find and replace (Regex) on TextPad? For example, how can I change this: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit…
gond
  • 1
  • 2
0
votes
1 answer

Regular expressions to replace

I need to replace a bunch of lines for SQL queries The format is like "xyzabcd > hdsd + 5 and", "xzbcd_TTM_dfdfd > hdsd + 20 and", "x_TTM_dfsddsdsdfd > hdsd + 20 and" I need to find the keyword TTM and add a "(" at the beginning and " or…
John
  • 529
  • 8
  • 20
0
votes
1 answer

How to increase length of a text file by adding 4065009 spaces using Textpad or Notepad++?

I need to increase length of 2,00,000 rows by adding trailing spaces of around 4065009 using textpad or notepad++ . How is this possible ? I have tried various options available in Notepad++ like convert tab to space etc it isn't working .
Subha8
  • 9
  • 1
0
votes
1 answer

How to run Netbeans Java applet in TextPad

I made a fuel cost calculator in the form of an applet in netbeans. Everything works just fine when I test it in Netbeans, but I need it to run in TextPad for my class. When I run the program I get different variations of this error: package…
0
votes
3 answers

Opening a file from the path mentioned in textpad and notepad++

If I save file paths in textpad or notepad++ like below... C:/data/a.txt D:/fgh/b.pdf And if I want to open these files from textpad and notepad++, there are some shortcut keys. Please provide the same.
Amaldev
  • 91
  • 1
  • 1
  • 16
0
votes
0 answers

Java : Could not load or find main class TrudiHw

I keep getting this error when trying to run my basic java code. It compiles with no errors at all but for some reason the program wont actually run. I am using textpad. Here is my code. /* *TrudiHw.java *Trudi Farrell *19/10/15 */ import…
Jimnah
  • 79
  • 5
0
votes
0 answers

Textpad from Helios: Macro recorder and shortcuts as described

I would like to use macros. I tried to create macros (for example marking all between opening < and closing > of a HTML tag) and it works. I tried to use it as tempory macro using CTRL R to run it or to save it as "numbered" macro (MACROxx.TMP, eg.…
Peter
  • 97
  • 13
0
votes
1 answer

Textpad from Helios used for editing XML or HTML: How to identify closing / corresponding TAG?

Working with Textpad as Editor on XML and HTML-files I'm looking for the possibility to identify the corresponding closing TAG. Ideal would be if the whole area between opening TAG and closing TAG could be marked or highlighted. Hint: CTRL+M does…
Peter
  • 97
  • 13
0
votes
0 answers

regular expressions with flags in either Textpad or Gedit

I would love to replace some paragraphs based upon a regular expression (python style) that needs flags gms to work properly. To keep things simple, I would like to exclusively work with text editors (and dive in into the coding later on. Is there…
Andrew Tobey
  • 915
  • 3
  • 10
  • 27
0
votes
1 answer

regular expression: match anything between specific pattern

I am trying to come up with a regular expression that matches a specific pattern by which articles in a text file I have are arranged. (note: "|" indicates paragraph mark/line break, whereas "." indicates some non-word characters.) Here is the…
Andrew Tobey
  • 915
  • 3
  • 10
  • 27
0
votes
2 answers

Textpad Custom Document classes color settings

I am trying to setup a Custom Document class in TextPad. I copied the pre-existing c.syn file (syntax color scheme for C language), adjusted as needed, but I have a couple of additional situations that I cannot figure put how to setup. It works fine…
horace_vr
  • 3,026
  • 6
  • 26
  • 48