Send Notepad-plus-plus mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Notepad-plus-plus digest..."
Today's Topics:
1. [notepad-plus - Open Discussion] How can I extract these
email addresses? (SourceForge.net)
2. [notepad-plus - Help] FTP Disconnects (SourceForge.net)
3. [notepad-plus - Open Discussion] RE: How can I extract these
email addresses? (SourceForge.net)
4. [notepad-plus - Open Discussion] RE: How can I extract these
email addresses? (SourceForge.net)
5. [notepad-plus - Open Discussion] How to extract email
addresses from files (SourceForge.net)
6. [notepad-plus - Open Discussion] RE: How to extract email
addresses from files (SourceForge.net)
7. [notepad-plus - Open Discussion] How can i change the menu
language to English (SourceForge.net)
8. [notepad-plus - Help] Browser to view opened files
(SourceForge.net)
9. [notepad-plus - Help] terminate a process before starting a
new one (SourceForge.net)
10. [notepad-plus - Help] RE: Browser to view opened files
(SourceForge.net)
11. [notepad-plus - Plugin Development] RE: NppExec scripts and
macros (SourceForge.net)
12. Beginner's question about highlighting (Archont)
13. [notepad-plus - Help] Recovery files created? (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Tue, 26 Aug 2008 22:45:14 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] How can
I extract these email addresses?
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5198499
By: sdsumike619
Say I have a bunch of webforms that were submitted and I want to extract the
email address of the submitter from them. I've already converted the emails
to .mbox files so I can open them with Notepad++
If the line is the same in every single email, I think there should be a way
I can extract all these emails in one swoop? This is the line:
Click to E-mail: [EMAIL PROTECTED]
Is there a way I can say to take everything after click to email, up to but
not including that question mark and then get all those emails into a file?
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 2
Date: Wed, 27 Aug 2008 04:53:37 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] FTP Disconnects
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199184
By: paniwani
When using the FTP plugin for Notepad++, I find that it disconnects from my
server about every 5 minutes or so. Is there a setting I can change to make
it last longer? I changed the timeout option under the FTP Synchronize settings
to the maximum at 1316134911 seconds. I also changed the "Keep Alive Interval
(seconds)" to 1316134911 seconds, but it still disconnects every 5 minutes.
If anyone can offer a solution or even suggest an alternative FTP plugin, I
would greatly appreciate it.
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331754
------------------------------
Message: 3
Date: Wed, 27 Aug 2008 05:45:13 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: How
can I extract these email addresses?
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199282
By: alexiljin
I would use a simple SED script to do the job. SED stands for the "Stream
EDitor",
a GNU freeware program. Here is the command line (written under Windows):
sed -n -e "s/Click to E-mail: \([EMAIL PROTECTED]).*/\1/ p" <file.mbox
>>emails.txt
Input file name: file.mbox (substitute other files here, one at a time);
Output file name: emails.txt (extracted e-mails are appended to this file);
[EMAIL PROTECTED] - regular expression that specifies which characters an e-mail
address may contain.
These include a minus sign, letters "a" to "z" and "A" to "Z", underscore,
period
and "@". Leading minus is taken literally and is not interpreted as part of
a character range specification;
\(...\) - parenthesis group characters to be extracted (presumably an e-mail
address);
"Click to E-mail: " is the prefix before an e-mail, it must match exactly,
character-by-character;
s/.../.../ is the "substitute" command.
SED Introduction and Tutorial: http://www.grymoire.com/Unix/Sed.html
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 4
Date: Wed, 27 Aug 2008 05:50:27 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: How
can I extract these email addresses?
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199295
By: sdsumike619
Wow that is way out of my league, but thank you!
I found a site online that lets you paste a file and then it extracts email
addresses, worked pretty well. But next time I'll try your command line program
(as long as I know the command line!!!)
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 5
Date: Wed, 27 Aug 2008 07:25:27 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] How to
extract email addresses from files
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199458
By: fool4uanyway
Use TextCrawler to do this.
It has a built-in regular expression for email addresses.
Just select it and choose the files to extract from and have TextCrawler do
the work for you.
See the message
"Tools to find and copy regex matches in files"
By: Fool4UAnyway (fool4uanyway) - 2008-04-19 23:49
http://sourceforge.net/forum/message.php?msg_id=4915704
in the thread
"copy to clip all text matching regex pattern" (Help forum)
http://sourceforge.net/forum/forum.php?thread_id=2012623&forum_id=331754
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 6
Date: Wed, 27 Aug 2008 08:50:20 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: How
to extract email addresses from files
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199645
By: sdsumike619
Thanks! TextCrawler is great!!!!! Do you know of a way for it to remove
duplicates
when it extracts?
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 7
Date: Wed, 27 Aug 2008 08:55:23 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] How can
i change the menu language to English
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199656
By: donsden
I m having the menu in German, now i need it to be in English. What shall i do?
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 8
Date: Wed, 27 Aug 2008 09:27:03 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Browser to view
opened files
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199717
By: luke3d
Hi all,
I would like to add a plugin (or enable the feature) to see all the opened files
into a browser (or something like that) on the left of the notepad.
Actually, all the opened files are on the top of the GUI in different tabs (one
tab for each file).
I need to see these open files into a browser (like the Ultraedit).
I have installed the Explorer Plugin but It shows me the open files in a
particular
directory, not the whole list of the ones opended.
Thak you for your support,
Luke
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331754
------------------------------
Message: 9
Date: Wed, 27 Aug 2008 09:30:43 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] terminate a process
before starting a new one
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199723
By: bkamrani
Hi,
Thanks for a wonderful editor, and thanks for great plugins.
I'm looking for a way to kill or terminate the last process started from console
before starting a new one, e.g., I want to re-run a python code by pressing
F6 but if the process has been previously started, then it complains that
"Console
process is still running".
I'm sure there should be at least a work around for it, I tried some but
couldn't
really manage it.
Any solution?
Kind regrds,
/Ben
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331754
------------------------------
Message: 10
Date: Wed, 27 Aug 2008 09:36:04 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Browser to view
opened files
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199735
By: luke3d
I'm currently using the Notepad++ ver 5.0.3.
thanks
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331754
------------------------------
Message: 11
Date: Wed, 27 Aug 2008 10:02:46 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
NppExec scripts and macros
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5199788
By: gsimcard
Don,
Could you please put HEX editor v0.9.0 in Notepad++ next release? I find the
new HEX editor is so better than the old version.
XS
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=482781
------------------------------
Message: 12
Date: Wed, 27 Aug 2008 18:26:11 +0200
From: Archont <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] Beginner's question about highlighting
To: [email protected]
Message-ID:
<[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1
Hello
I'm sorry for posting such a simple question but I haven't really
found any answers regarding the topic.
I'm in need of a regexp-based highlighting feature. Lines that, for
example, contain OK$, PASSED$ or NOT BROKEN (YET|STILL)$ are
highlighted green, lines with a TODO are yellow and the rest are red.
Does notepad++ have this kind of functionality?
--
Pozdrawiam / Regards
Jacek "archont" Janiszewski
Samwise Interactive
------------------------------
Message: 13
Date: Wed, 27 Aug 2008 16:19:06 +0000
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Recovery files
created?
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5200633
By: tripppr
Does anyone know if npp creates a recovery file in the (rare) advent it crashes?
I lost unsaved data in a new file that had not been saved and was unable to
locate it in C:\TEMP or %TEMP%
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331754
------------------------------
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 27, Issue 37
*************************************************