Notepad++ is a free and open source text editor for Windows. It is designed as a replacement for the built-in Notepad application.

learn more… | top users | synonyms

1
vote
0answers
9 views

Creating a Whitelist/Filter in Notepad++

I've been parsing packet dumps taken with Wirefox and cleaning it up with Notepad++. However, regardless of how complicated or intuitive I attempt to make the filter, it fails. Not completely by any ...
0
votes
1answer
57 views

Compiling and Running C code in notepad++

I have a problem with compiling and running C codes in notepad++. I am using the nppexec plugin and wrote the following in the script section after pressing F6: C:\MinGW\bin\gcc.exe -g ...
0
votes
1answer
24 views

Using regex in NP++ to remove large chunks of XML

I'm not very well versed in regex; I use it from time to time, but never anything serious (I'm proud when I get a lookback to work, for example). Anyway, I am dealing with an issue where I have an XML ...
0
votes
1answer
19 views

find and replace all xml elements within a tag

I am editing an xml file in notepad++ and was wondering if it is possible to find and replace elements within specific tags. The reason I ask this is I am editing a lectora document and want to change ...
0
votes
0answers
15 views

NotePad++ EOL auto switch all the time

Not sure if I missed something or I am just an outstanding unlucky one. My NotePad++ ALWAYS change my EOL by no point at random time. This become very annoying when I am doing scripting ( Perl mostly ...
0
votes
0answers
17 views

EOL compatibility on BOTH Linux and Dos/Windows servers?

Using Notepad++ on a windows box, (100s of files into a plugin I've been developing for Wordpress) I bumped up against a problem wherein the differences in newline characters between Linux and ...
0
votes
0answers
20 views

pythonscript callback function using MENUCOMMAND enum?

Does anyone know how to get the callback function of the pythonscript plugin to work for a menucommand? For example, i'm trying to simply have pythonscript print something to the console whenever the ...
0
votes
3answers
38 views

Regular expression to merge two lines

I'm trying to find a regular expression to merge the second and third lines. There's no space after each line (only \r\n). I can look for lines that start with letters then merge them with the line ...
0
votes
2answers
26 views

Wordpress Ajax setcookie WAMP/LAMP disparities

In a wordpress themed-plugin for e-commerce I have two ajax/php scripts setting cookies (both in the same directory) The ajax calls are set from the same "cart.js" The first script sets/updates an ...
0
votes
0answers
18 views

change all at once emmett notepad++ [closed]

I know this is a simple question but I have looked everywhere and cant figure it out. I am building lots of forms and sometimes i need to change the input element names. What i want to do is if the ...
0
votes
2answers
32 views

regex for stripping the first 3 columns of data separated by pipe symbol

I have text file with values separated by the pipe symbol | data|baloney|198237423984732|cheese|more cheese|98746464 I want to remove the first three columns, so for example I am left with ...
0
votes
1answer
55 views

NotePad++ RegEx for Changing A Lot Of XREFs

Below are several versions of XREF code used in a XML technical manual 3 tech writers are working on as a team. Obviously, it would have been great if they would have been consistent with their XREF ...
0
votes
2answers
29 views

comment system using php inside the body , and there is error on the result

i am wrinting this code below in notepad and i saved in .html extent , i want to design a simple comment system with a database (which is notepad ) to save the comments , but when i click on the ...
1
vote
0answers
15 views

Notepad++ to automatically monitor a log file, editing the last line then saving the last line to new file

Please excuse my total newby status but I was wondering if anybody could help me out here. I have a log file of music artist and titles that gets updated every time a new song plays. I want to ...
0
votes
0answers
15 views

Running arbitrary filters

Does anyone know of a Notepad++ plugin that would allow me to run the contents of my file through an arbitrary (let's say, Powershell) filter? I have text I want to reformat by writing powershell ...
0
votes
1answer
30 views

Notepad++ regex search and replace assistance

I've dug around for about half an hour trying to find a way to do this, but I'm far from good with regex and ... well, am giving up. I turn to my peers for some help. I've got a large text file that ...
2
votes
1answer
27 views

Notepad++ Search Multiple and Replace Respectively

Doing some String manipulation and I want to ask if the below is possible in Notepad++: I have a string with Years: 10-Jan-13 22-Feb-14 10-Jan-13 10-Mar-13 I want 10-JAN-13 22-FEB-14 10-JAN-13 ...
0
votes
1answer
20 views

How can I search for the longest xml nodes in notepad++?

I have some xml data where I'd like to find the longest nodes. For example... <data> <name>Miranda</name> <type>Horse</type> </data> <data> ...
1
vote
1answer
45 views

Trying to create a new tab from notepad++ .NET plugin

I am writing a Notepad++ plugin, and need to create a new tab, for a new file. I haven't been able to find anything covering this in the documentation. The closest I have come is: IntPtr ...
2
votes
1answer
81 views

which notepad++ syntax highlighting style is applying these colors?

Screenshot: Using notepad++ v6.3.2 and editing an html file, Notepad++ is using strange colors to highlight the code. Problem is, i can't find those color values in any section of the theme (Global ...
0
votes
1answer
29 views

How do I change text on the line below a specified criteria in notepad++?

I'm working with a Cisco switch and copying some vlans over from another configuration file. It looks like this: interface GigabitEthernet4/0/1 switchport access vlan 502 I know what vlans they ...
0
votes
0answers
64 views

Notepad++ theme creation

I am creating my own notepad++ theme , especially for HTML5, CSS, JavaScript , so the way i am doing it copying already created xml theme, and changing values in new copy. My question is can i ...
0
votes
0answers
16 views

How to insert symbols on Notepad++ before a point? [migrated]

Anyone have an idea about how to insert symbols on Notepad++ every X phrases (point-separated) and also before every linebreak? I am working with plain text. Thank you in advance.
0
votes
2answers
48 views

How to tell notepad++ regular expression to be non greedy?

I'd like to test my regular expressions in notepad++ before I let em play outside the box. The expression itself works but it should be tell to be non greedy. Though I know how to do this in PHP I've ...
2
votes
5answers
42 views

Regular Expression for character between brackets

I want a regular expression that matches a ' ' character between brackets and other text: [Hello World] ^ I've made it this far: \[.* .*\] But unfortunately this also matches this: ...
0
votes
4answers
68 views

Regex to find immediate duplicate tag

I am using Notepad++, wherein I have to find and remove the immediate duplicate HTML tag which is shown below Actual <a href="www.google.com"><a ...
-3
votes
0answers
32 views

perl regex substring substring notepad++ [duplicate]

Replace any pattern in the form of [CHARACTERS] with (characters) [SOMEDATA] becomes (somedata) This is what I have: [_\w+_] My main problem is it grabs the word but I dont know how to make it ...
0
votes
2answers
29 views

substring replacement regex

Add a semicolon (;) to the end of every line. This is what I have: ([^\n])$ The problem is it takes the last characther out instead of adding the semicolon on the end. Also, I am using Notepad++
0
votes
0answers
16 views

PyQt4 example working from IDLE, but not when executed from npp

I am running a very basic example in PyQt4. It is shown below. I was struggling with the Enthought Canopy installation, struggling with the cygwin Python implementation, and finally just installed ...
0
votes
0answers
31 views

unable to run PyQt4 example

I am trying to run a pyqt4 example through Notepad++. I asked this question earlier (Nothing happens when running PyQt4 example code), and ended up uninstalling Enthought Canopy and all remnants of ...
-1
votes
3answers
59 views

regex matching expression notepad++ [duplicate]

I am really having trouble with regex using notepad++: For any single word following an equal sign (=), place what follows the equal sign in quotes. eg: a = bcd becomes a = "bcd" This is what I have ...
-1
votes
2answers
63 views

substring replacement regex Notepad++

I am trying to use Notepad++ to substitute some text. I am new to using regex and I am having trouble with this: Replace any pattern in the form of [CHARACTERS] with [characters], e.g. [SOMEDATA] ...
-1
votes
1answer
31 views

How to match start and end of a string?

I'm trying to use Notepad++'s find & replace with a regular expression on the following sample: 3 733xxxx (-1) 3 1521xxxx (-1) 3 1521xxxx (-1) How can I keep only the following ...
0
votes
2answers
28 views

How to match lines not ending (-1)\r\n

I'm trying to match the first 5 lines, and the last line, in this sample: -- 2012-09-20 rep +6 = 184 1 12532070 (2) 2 12531806 (5) 2 12531806 (5) -- 2012-09-21 rep +12 = 196 ...
1
vote
1answer
31 views

Strange charachters when exporting database

I'm writing a quick script to remove duplicates from the database. I exported the database from phpMyAdmin before starting just in case I mess something up and I noticed some wierd charachters in a ...
0
votes
4answers
29 views

Find and replace with regex in notepad++

I'm trying to remove lines that indicate page numbers from my document. Rather than go through and manually remove each line, I wanted to do a find/replace with regex. An example of an offending ...
0
votes
0answers
31 views

notepad++ snippets and newline

I'm trying to set some perl snippets for a Notepad++ plugin (SnippetPlus) and want to be able to have \n in my code snippet rather than creating a new line in the perl code. eg Snippet Name print ...
0
votes
0answers
42 views

Regex Notepad++ Data Processing

I have files with lines that begin with a time (12:30, 1:30), a date (05/01/2013) or some random text. I'm trying to locate and delete lines that start with a time and do not contain a dollar sign ...
0
votes
1answer
27 views

Break up a long HTML string

I made a URL call in Java to a small webpage. It returns a very long string of HTML code, including a jumble of tags. It's very hard to read when it's all on one line. I copied it into Notepad++ and ...
4
votes
1answer
89 views

Using Notepad++ as Git Editor without affecting settings

I use and love Notepad++ (http://notepad-plus-plus.org/) as my go to simple text editor. I have been using it as my default editor for git for a few weeks now and have noticed some funny behavior. ...
0
votes
1answer
18 views

highlight using custom extension in notepad++

I have to work these javascript files which do not have the typical .js extension. Let's call this extension .ce1 (for custom extension 1) Every time I open one of these files in notepad++, I don't ...
0
votes
0answers
19 views

How to get block comments in user defined language to work properly in notepad++?

I am building a definition for a propriatery language that uses c style comment blocks. I have set the following: Comment open: /* Comment close: */ Treat keywords as symbols (in Comment Block ...
0
votes
2answers
44 views

Change IP addresses to regex

Is there a way to use regular expression search and replace function in notepad++ to change ip addresses to a range for below? With below RewriteCond %{REMOTE_HOST} ^14.96.0.0/14 RewriteCond ...
0
votes
1answer
30 views

step through a string, till you find a '?', then replace everything after it (till the 1st white space) with a given string

I'm using notepad++ find and replace (with regex) to do the following: step through a string, till you find a '?', then replace everything after it (till the 1st white space i.e. end of the 2nd line) ...
0
votes
1answer
53 views

Set Notepad++ to remember last session?

I'm on windows 7. Because I work on sometimes long projects I'd like notepad to remember the last session instead of me having to save new sessions and load them manually. I set the MISC tab in the ...
1
vote
1answer
51 views

In Notepad++ replace all lines except ones that match to given expression, using regex

I saw here some answers that might help me if I'll combine them together but I can't seem to figure out how to do it properly. Lets assume we have a following text file: aaaaaaaaaaaaaaaaaaaaaa ...
1
vote
1answer
22 views

notepad++: keep regex (multi occurence per line) and line structure, remove other characters

I have a 130k line text file with patent information and I just want to keep the dates (regex "[0-9]{4}-[0-9]{2}-[0-9]{2} ") for subsequent work in Excel. For this purpose I need to keep the line ...
1
vote
1answer
33 views

Notepad++ Delete all lines with a word that aren't in a wordlist

I want to delete all lines with emails that aren't in my wordlist for example I have a txt file with: 12benb@example.com Jonh Smith 13chowie@example.com Chowi Gonzalle 17hughes@example.com David ...
0
votes
1answer
34 views

EOL conversion in notepad ++

For some reason, when I open files from a unix server on my windows machine, they occasionally have Macintosh EOL conversion, and when I edit/save them again they don't work properly on the unix ...
0
votes
1answer
42 views

Copying Notepad++ code into PowerPoint 2010

I've tried copying some source code that I have input into Notepad++ and pasting into PowerPoint 2010, but I'm not offered any "Paste Special" options other than "Keep Text Only" Any suggestions on ...

1 2 3 4 5 28