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
1 answer

Regex in Textpad - Remove all text that is not enclosed inside quotes

I am using Textpad to edit some text in which I need to do the following transformation, Original Text Should become REFRIGERATE …
0
votes
3 answers

Textpad Regex - Finding beginning/end of selection

I want to add tags to selected text. Tried recording a macro that searches for ^ and replaces it with and also looks for $ and replaces it with . Works great when the word/phrase is at the beginning of a line... but when I have a…
0
votes
2 answers

How to increase heap size using TextPad

I'm using TextPad to run a simple Java program, and I keep getting an out of memory error. Some digging on the internet tells me that I need to increase the heap size, and that the best way to do this seems to be with a flag. However, I can't find…
0
votes
2 answers

textpad regular expressions

Please give me some advice on removing newline characters before alphabets and ignoring the lines starting with >. eg: >gi|16802049|ref|NP_463534.1| chromosomal replication initiation protein [Listeria monocytogenes…
The Last Word
  • 203
  • 1
  • 7
  • 24
0
votes
2 answers

How to open and display text file at specific line using VBA?

I have a VBA userform to open a text file in TextPad with the following: Call Shell("C:\Program Files\TextPad 5\TextPad.exe " & "C:\testfile.txt", vbNormalFocus) I'd like the text file to be displayed at a specific line number. Is there a way to…
Excellll
  • 5,609
  • 4
  • 38
  • 55
0
votes
1 answer

TextPad: Find all the lines not starting with a pattern and replace with a back space

I want to introduce a backspace character at the beginning of the line where a particular pattern is not found. Please advise. Thanks, Sagar
user2315410
  • 11
  • 1
  • 2
0
votes
2 answers

Code works in Netbeans, but not TextPad?

Here is the code throwing the error. In TextPad, I get a NullPointerException when I try to write the contents of the array to the text file. (It doesn't see anything in the array.) Note: it works perfectly in Netbeans. I only get this in Textpad.…
Rainhider
  • 806
  • 1
  • 17
  • 31
0
votes
1 answer

textpad regex search start of the line & end of the line

I want to find all the lines in .java, .jsp file using Textpad where in start of the line is // end of the line is ; e.g. // logger.debug("rowData: "+rowData); Can it be done using Regex Match in Text Pad? or do I need to write a Perl Program,…
Sandeep540
  • 897
  • 3
  • 13
  • 38
0
votes
1 answer

Auto High light the selected word in textpad(version 6.X)

HI All I am looking for a feature in Textpad, which will highlight all the occurrences of selected word. This might not be very useful for all cases. But i found this very interesting in Notepad++. Is there any option to make this happen in Textpad…
Maddy
  • 3,726
  • 9
  • 41
  • 55
0
votes
1 answer

How to use Html parser in Textpad?

I am not fully new beginner to Java, I learned Java when I was in collage. I am currently doing a small program for grab data from a online webpage. I do the google reasearch, and find html parser is one of simple way to do that. My question is how…
Cameron
  • 25
  • 4
0
votes
1 answer

Searching for multiple words using TextPad

I need to find a list of files that contain 2 different words. For example, I need to search for a list of files from a folder that contain the word "Balloon" and then from the result, need to search for files that contain the word "burst". Is it…
user1670593
  • 9
  • 1
  • 1
  • 2
0
votes
2 answers

Textpad search all regex

Is there a possibility to "search all" in Textpad (or with some other text-editor)? Because I only want the numbers of addresses: StreetTest 98 StreetTestB 5A So I use the search regex: [0-9].*$ But textpad gives the results one by one. (and…
francisMi
  • 925
  • 3
  • 15
  • 31
0
votes
1 answer

Textpad Regular Expression: Replace a group of 3 characters with 5 new lines

I want to beautify the SQL code using this tool. Before this tool will accept it, I want to replace each instance of "<*>" (excluding double quotes) with "\n\n\n\n\n" (5 new lines) in TextPad using the Replace feature and choosing Regular…
JustBeingHelpful
  • 18,332
  • 38
  • 160
  • 245
-1
votes
3 answers

Code not running ,I need help to find problem in code

I need find the error . the output must to "hot" or "cold" . the compile it appears that there are curly brackets missing . like these : error: missing return statement } ^ public class quiz{ public static String celsius (double F){ …
-1
votes
1 answer

Remove the equals sign and the number and + sign after it from a string file

I have a file that has custom retails that I need to remove for order processing. The retails are in a format w/out the decimal and pertain to the item number proceeding it. I need to just be left with the item numbers between the + Here is what I…
1 2 3
9
10