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

Get call in stack Java

public void push(E e) { list.add(e); } public E pop() { list.remove(list.size()-1); } public E peek() { } public boolean empty() { if ( list.size()== 0) { return false; } else { return true; …
1
vote
1 answer

Using regex to get rid of newlines in addresses

I have a set of address data which had three main columns policy number, address and index number. In the middle of some of the addresses there are new lines which I want to get rid of. But I don't want to get rid of the new lines separating each…
Christopher Ell
  • 1,878
  • 3
  • 16
  • 25
1
vote
1 answer

Textpad: How to serialize / concat multiple replacements

I have to use Textpad in my environment. To treat a file (on a regular basis) it is necessary to make +/- 20 replacements, some of them regex, some of them not. For most of the replacements I have defined macros (for each replacement one macro, i.…
Peter
  • 97
  • 13
1
vote
0 answers

windows_package install types

I am trying to use Chef to install a few programs for development purposes such as Visual Code, TextPad and a handful of others. I am having a problem determining the installer type and options to make it install silently. For example, I can use…
Cantaberry
  • 21
  • 3
1
vote
1 answer

Search and Replace in textpad/notepadd++ using RegEx

I need to do search and replace in textpad or notepad++. So I am trying to use Regular Expressions. I have some lines like below (C_ABCD_ehfjdhf dj hfdjhfhj and (S_dfdfdddff 20 and (P_ABCD_fmngfngm gfnm and I need to check for the key word ABCD and…
John
  • 529
  • 8
  • 20
1
vote
1 answer

How to avoid this WriteLine failure in TextPad tool?

Cscript.exe with this script Wscript.StdOut.WriteLine( "Test " & ChrW(&H2460)) works fine in a CMD window but in a TextPad tool fails with Microsoft VBScript runtime error: Invalid procedure call or argument How can I remedy this? Changing Tool…
ChrisJJ
  • 2,191
  • 1
  • 25
  • 38
1
vote
1 answer

How can I fix this TextPad external tool command?

When I'm editing a file named: S:\!DJ DAP\PlaylistFormatName.vbs and execute this tool: I expect launch of the file "S:!DJ DAP\PlaylistFormatName-Test.bat" but get this fail: 'S:\!DJ' is not recognized as an internal or external…
ChrisJJ
  • 2,191
  • 1
  • 25
  • 38
1
vote
2 answers

Copying garbled column text in excel

I have some data coming in column format separated by commas name1,age1,school1,subjects1,location1,dob1,doj1 name2,age2,school2,subjects2,location2,dob2,doj2 name3,age3,school3,subjects3,location3,dob3,doj3 some are like this separated by white…
Raulp
  • 7,758
  • 20
  • 93
  • 155
1
vote
1 answer

Possible to make global settings for all users in TextPad?

I have installed Textpad on a Windows server accessed by many users, as it is my editor of choice for numerous reasons. I have a number of non-standard syntax definitions (R, STATA, SQL), the files for which are stored in the system folder of the…
Luke
  • 643
  • 1
  • 10
  • 17
1
vote
1 answer

Textpad not able to open Tomcat server log files

I am using Tomcat server for my application. When the Tomcat server is started, then the logs files are not opening in Textpad. Textpad says "reading....." for long time but file is not opened. If I stop the Tomcat server then the logs are opening…
user2369634
  • 897
  • 3
  • 9
  • 17
1
vote
1 answer

Replace specific words using regular expression (globally) - Java

I am trying to come up with a regular expression to replace specific words irrespective of position / order but it doesn't seem to work Example input: This is a a an the a the testing regex: (\sa\s)|(\san\s)|(\sthe\s) Actual output: This is a the…
Learner
  • 2,303
  • 9
  • 46
  • 81
1
vote
2 answers

How to replace a parentheses at the start of a line in textpad

I know that the character ^ finds a character at the start of a line, but I need to delete a left parentheses at the start of many lines. When I try to do a replace, I receive the following error: Unmatched marking parenthesis ( or \(. The error…
Skip
  • 23
  • 4
1
vote
2 answers

How do I replace date format using TextPad?

How do I do a replace using TextPad for all date occurrences such as 01-Apr-2014 02-Apr-2014 03-Apr-2014 to 2014-Apr-01 2014-Apr-02 2014-Apr-03 I tried a bunch of regular expressions for the date, but can't even get it working once. Thanks.
Candice
  • 25
  • 6
1
vote
0 answers

How do I configure textpad to compile and run c++ programs in the windows command prompt?

I installed MinGW and was able to compile my c++ program in the windows command prompt and run it successfully. Now I am just wondering how I set up textpad to do that. I basically just need to know how to set up the tools in textpad, like i did…
1
vote
7 answers

In editor XML formatting

Hi Anyone know of a simple system of getting xml formatted inside an editor. I mainly use textpad so that would be my main interest. What I'm really asking is that when I paste an xml string from a logfile or something into textpad that I can use…
Toby Allen
  • 10,997
  • 11
  • 73
  • 124