Send Notepad-plus-plus mailing list submissions to
        notepad-plus-plus@lists.sourceforge.net

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
        notepad-plus-plus-requ...@lists.sourceforge.net

You can reach the person managing the list at
        notepad-plus-plus-ow...@lists.sourceforge.net

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] Delete a semicolon at a
      specific position? (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Delete a     semicolon at a
      specific position? (SourceForge.net)
   3. [notepad-plus - Open Discussion] RE: Delete a     semicolon at a
      specific position? (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Delete a     semicolon at a
      specific position? (SourceForge.net)
   5. [notepad-plus - Help] Text highlighting (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Delete a     semicolon at a
      specific position? (SourceForge.net)
   7. [notepad-plus - Help] RE: How do I do this? (SourceForge.net)
   8. [notepad-plus - Plugin Development] RE: Even      your grandmom
      can do it! (SourceForge.net)
   9. [notepad-plus - Help] Hide lines (SourceForge.net)
  10. [notepad-plus - Help] Loading session as  default action?
      (SourceForge.net)
  11. [notepad-plus - Help] sorry for the newbie        question: how to
      search (SourceForge.net)
  12. [notepad-plus - Help] RE: sorry for the newbie    question: how
      to search (SourceForge.net)


----------------------------------------------------------------------

Message: 1
Date: Wed, 09 Sep 2009 15:09:26 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Delete a
        semicolon at a specific position?
To: nore...@sourceforge.net
Message-ID: <7619262.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619262
By: ghohm

Hi!

I'm french so excuse my poor level in English! ;)

I would like to delete a semicolon at a specific position in a huge CSV file
(180.000 lines).

How can I do this in Notepad++ (Excel 2003 can't of course open my file which
> 65.000 lines)?

I think I could register a macro where I'll use a regular expression (regexp)
to find the semicolon which is at the 71st position of each line and delete
it. Then I launch this macro in a loop.


But ... I don't know how write this regexp!

Could you help me please?


Thanks.

G?m

______________________________________________________________________
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, 09 Sep 2009 15:14:19 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Delete a        semicolon at a specific position?
To: nore...@sourceforge.net
Message-ID: <7619281.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619281
By: ghohm

I made a mistake, this semicolon is not "at the 71st position". I must delete
the 71st semicolon which could be at the 71st position the 90th, the 166th, etc.

______________________________________________________________________
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: 3
Date: Wed, 09 Sep 2009 16:11:59 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Delete a        semicolon at a specific position?
To: nore...@sourceforge.net
Message-ID: <7619421.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619421
By: lespea

You can't do this in notepad++ (it's regex engine sucks) but here is the regex
to do it if you have access to a better tool that uses perl regular expressions

s/^((?:[^;]*;){70}[^;]*);/\1/


#  Example -- this removes the 8th ';'
perl -e "my $t=q{;d;fd;d;a;sd;df;fd;a;as;sd;f;d;aadsf;;fea;fs;;;;aef;se;}; $t
=~ s/^((?:[^;]*;){7}[^;]*);/\1/; print $t"

;d;fd;d;a;sd;df;fd;a;as;sd;f;d;aadsf;;fea;fs;;;;aef;se;
;d;fd;d;a;sd;df;fda;as;sd;f;d;aadsf;;fea;fs;;;;aef;se;

______________________________________________________________________
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, 09 Sep 2009 16:17:50 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Delete a        semicolon at a specific position?
To: nore...@sourceforge.net
Message-ID: <7619431.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619431
By: lespea

Forgot to mention... this exact command will do what you want:

perl -pe "s/^((?:[^;]*;){7}[^;]*);/\1/;" {your filename goes here}

You can get perl for windows here (http://www.activestate.com/activeperl/)

______________________________________________________________________
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, 09 Sep 2009 16:33:02 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Text highlighting
To: nore...@sourceforge.net
Message-ID: <7619467.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619467
By: james2044

I want to highlight keywords and keep them highlighted in a document while I'm
working on it similar to ms word.
Is there a way to do that in notepad ++
Thanks in advance
James


______________________________________________________________________
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: 6
Date: Wed, 09 Sep 2009 17:04:52 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Delete a        semicolon at a specific position?
To: nore...@sourceforge.net
Message-ID: <7619543.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619543
By: cchris

I'd have suggested sed or awk for the job, but the idea is the same: it is a
scripting language which will do it.

However, using the NppExec plugin, you can launvh the script from Notepad++,
and even edit it at the same time with Notepad++ too. I haven't played with
this much, but it could be a powerful combo.

CChris

______________________________________________________________________
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, 09 Sep 2009 18:48:04 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: How do I do
        this?
To: nore...@sourceforge.net
Message-ID: <7619733.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619733
By: abc1232

Thanks for the tips everyone.  Those were very helpful...  :)

______________________________________________________________________
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: 8
Date: Wed, 09 Sep 2009 19:52:38 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Even    your grandmom can do it!
To: nore...@sourceforge.net
Message-ID: <7619844.482...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619844
By: mcloo

My gra'ma is dead, so it's not that easy...

McLoo

______________________________________________________________________
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: 9
Date: Wed, 09 Sep 2009 20:05:15 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Hide lines
To: nore...@sourceforge.net
Message-ID: <7619870.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619870
By: fakts

I love "Hide line" in NP++, but how can I make it permanent, now when I hide
some lines and then relaunch the same document then those lines are not hidden
no more, any idea?

______________________________________________________________________
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, 09 Sep 2009 20:37:41 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Loading session as
        default action?
To: nore...@sourceforge.net
Message-ID: <7619938.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619938
By: lazytron

Is there any way you can assign the default action of a saved Notepad++ session
to open as a session (and therefore automatically open all the associated files)
and not open the file itself for editing?

Hopefully that makes sense. 

Thanks in advance. 

______________________________________________________________________
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, 09 Sep 2009 21:00:00 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] sorry for the
        newbie  question: how to search
To: nore...@sourceforge.net
Message-ID: <7619984.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619984
By: mbleyle

so I'm not a complete idiot, but I am new to this forum platform.  I can't find
the "search" feature anywhere.

I'm trying to discover how to save files in NP++ such that the XML levels stay
in the state I put them in (expanded or collapsed).  Any advice is appreciated

______________________________________________________________________
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: 12
Date: Wed, 09 Sep 2009 21:04:50 +0000
From: "SourceForge.net" <nore...@sourceforge.net>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: sorry for the
        newbie  question: how to search
To: nore...@sourceforge.net
Message-ID: <7619990.331...@sourceforge.net>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7619990
By: mbleyle

I should clarify: I do see the giant search box in the upper right, but that
appears to search the entire SourceForge site.  I only want to search a specific
forum

______________________________________________________________________
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



------------------------------

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july

------------------------------

_______________________________________________
Notepad-plus-plus mailing list
Notepad-plus-plus@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 40, Issue 20
*************************************************

Reply via email to