EditPlus is a text editor, HTML editor, PHP editor, Java editor and Hex Viewer for Windows. While it can serve as a good Notepad replacement, it also offers many powerful features for Web page authors and programmers.
Questions tagged [editplus]
32 questions
11
votes
3 answers
backspace issue on linux file
I use EditPlus to write linux bash programs. after writting when i move files to server i get these kind of errors:
sleep: invalid time interval `2\r'
Try `sleep --help' for more information.
/usr/bin/program: line 9: $'\r': command not…

user115079
- 711
- 1
- 11
- 23
4
votes
3 answers
Remove long lines from text file (Notepad++/EditPlus)
I have a very big text file.
Every line in this textfile has a complete sentence in it.
Now I have to remove every line/sentence with more than x characters in it and just keep the lines with <=x characters.
Is this even possible? Can i do this…

eliah winkler
- 73
- 1
- 3
2
votes
3 answers
How to show #s in vertical from Horizontal through simple regex?
I have the following numbers as shown below:
1234567890
I would like to get the result as:
1
2
3
4
5
6
7
8
9
0
(Horizontal to Vertical). Please help me to achieve it via simple regex or through editplus.
Thanks in advance !!!

Bose
- 21
- 1
1
vote
1 answer
Run Perl in Editplus
I have configured to execute perl in my editplus software and I am able to do that successfully, but the strange problem I am facing is, It takes 15 seconds of time to execute even if it is just 1 line script with a print statement. When I have…

Naga
- 21
- 1
- 3
1
vote
2 answers
Windows context menu "send to" EditPlus has wrong path from ClearCase Explorer
I installed EditPlus 5.5 (evaluation version) on Windows 10 (64 bit).
During the installation I selected the option of adding EditPlus to the send to item of the Windows context menu.
The send to opens a file in EditPlus from File Explorer.
But I…

Abra
- 19,142
- 7
- 29
- 41
1
vote
1 answer
Find and Replace first 100 lines that match in editplus or Notepad++
I need to find certain characters and want to replace them only for the first 100 lines. Is there any easy way to do this in Notepad++ or editplus?

user3384231
- 3,641
- 2
- 18
- 27
1
vote
2 answers
How i can to delete all after last word no.x?
How i can to delete all after last word no.4?
word1 word2 word3 word4 word5
word6 word7 word8 word9
word10 word11 word12 word13 word14
So i want to remove word5 and word14

JeekZ
- 29
- 3
1
vote
1 answer
Replacing comma by dot only in numbers in a texteditor using search and replace function
i got a table as txt.file with all the variables beeing seperated by ;.
Lets say i got 3 Variables: ID, Size and Comment.
My Data could look something like this:
1;1.5;hello. how are you?
2;2.5;a comment.
3;2.1;another comment.
Now i would…

TinglTanglBob
- 627
- 1
- 4
- 14
1
vote
3 answers
Regex Query to find the first tab before EOL
I have a line that looks like this:
$/Reporting/MSReportin gServices/Alle gro/Ex eXYZ.All egro.Ss rs:
The spaces are tabs, so here is what it actually looks like
$/Reporting/MSReportin…

Raj More
- 47,048
- 33
- 131
- 198
1
vote
2 answers
Next Capital letter using Regex Search
I use EditPlus.
This tool has a nice search option where you can search either regular text or RegEx search.
I want to search for the next Uppercase alphabet preceeded by a lowercase alphabet. What do I put in the search box for this?

Raj More
- 47,048
- 33
- 131
- 198
1
vote
1 answer
using regex to modify an xml
I need to change the following
crap
to
crap
I want to use regex to do this, I don't want any alignment mismatch (for some lame reason)
it would be more helpful if anyone could point out editplus3…

fedvasu
- 1,232
- 3
- 18
- 38
1
vote
2 answers
Editplus replace lowercase case with uppercase
I use Editplus to find replace values. I have String in the for abc_xyz. Is there way to convert it to abcXyz (camel case) using editplus regular expression and find replace functionality?

mehta
- 735
- 1
- 11
- 26
1
vote
2 answers
gvim change file character utf-8, but other editor show ansi
System is Win7
My vimrc:
set encoding=utf-8
set ffs=unix,dos,mac
set fencs=utf-8,ucs-bom,euc-jp,gb18030,gbk,gb2312,cp936
set fenc=utf-8
After I save the file with gvim, I open the file in editplus :
PS: editplus's default character setting is…

bloody numen
- 487
- 6
- 13
1
vote
1 answer
Get only Text part from HTML
I have an HTML page opened in EditPlus.I want to remove all the HTML tags i.e. all the <> tags from it so that I am only left with the text part.What regex do I need to put to remove these.I tried <.> since . means any character but it did not…

Jeets
- 3,189
- 8
- 34
- 50
0
votes
0 answers
.java uses or overrides a deprecated API.& Recompile with -Xlint:deprecation for details
.java uses or overrides a deprecated API. Recompile with -Xlint:deprecation for details.
import java.awt.*;
import java.applet.*;
public class aprg4 extends Applet
{
public void init()
{
setBackground (Color.yellow);
}
…

Rudra
- 1
- 1