Community
    • Login
    1. Home
    2. Help wanted · · · – – – · · ·
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • Xin ZhouX

      Caffe prototxt file edition using notepad++

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      2k Views
      No one has replied
    • rcpao-enmotusR

      Bug: Vertical Edge Settings > Number of columns is off by one

      Watching Ignoring Scheduled Pinned Locked Moved vertical edge columns
      9
      0 Votes
      9 Posts
      5k Views
      Grace BenG

      Informative blog with good useful information.

    • Saksham GuptaS

      Help removing folder margin style lines.

      Watching Ignoring Scheduled Pinned Locked Moved indent margins border indentation
      4
      0 Votes
      4 Posts
      3k Views
      Claudia FrankC

      @Saksham-Gupta

      I’m not aware of any plugin which supports c++ script execution.
      So you either have to write your own little plugin which executes
      SCI_SETFOLDFLAGS(0) when it receives the NPP_READY notification
      or you install one of the mentioned plugins and call the respective function.

      Cheers
      Claudia

    • Vasile CarausV

      Plugin / Regex in Meniu Bar / My Favorite - Add new keep

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      1k Views
      Scott SumnerS

      @Vasile-Caraus

      You don’t say if you are wanting to do searches or searches+replaces, but either way you could record and save a macro (and then it would appear in the “Macro” menu).

      The downside to this is that then the regular expressions used become very “hardcoded” – there is no existing easy way to create a situation where, for example, a regular expression(s) linked to a named menu entry could pull up the Find dialog, populate the find-what and/or replace-with boxes, and then let you edit them slightly before running the search. At least this doesn’t exist as far as I’m aware…perhaps a plugin? “RegRexPlace” (not updated since 2009) seems to be a start on this idea, but it is very basic and the author even says it needs improvement.

      My favorite editor of old, MultiEdit, allowed creating and saving regular expression search data under custom names, and even had a prompting feature such that, when run, it would ask the user for some input data, and then produce a very specific search field. Something like (not remembering exact syntax very well):

      <prompt “Enter a number”=my_number>this regex looks for the number `my_number`

      So then when that named search is run, a prompt box pops up asking “Enter a number” and the user enters data (for example, 123); then the search will be run looking for the exact data this regex looks for the number 123

      Okay, so that example doesn’t show the power of the feature, but the basic idea is there I guess. :-)

      This probably goes above and beyond what the OP is asking about, but I just thought I would throw it out there…

    • Eris LeciE

      help replacing places

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      1k Views
      Claudia FrankC

      @Eris-Leci

      from your given example you can use regular expression, build 3 matching groups and rearrange it like this

      find what:(\d+)(:)(.+@.+\.com) replace with:$3$2$1

      Means it is search for any number of digits (\d+), at least one followed by a colon (:) followed
      by any char followed by @ followed by any char followed by .com

      If you want to learn more about regular expression see this link and the last post by guy038
      https://notepad-plus-plus.org/community/topic/14208/is-regex-condition-possible-in-replace-string/5

      Cheers
      Claudia

    • Rick SchieckR

      .txt not added to text files

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      2 Votes
      5 Posts
      4k Views
      Claudia FrankC

      @Bret-Leduc

      Maybe the setting
      Settings->Preferences->Default Directory->Use new style save dialog… was activated?

      Cheers
      Claudia

    • NorteXN

      Auto-doubling brackets feature

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      3k Views
      NorteXN

      OMG THANKS SO MUCH IT WAS THAT EASY. XD THANKS ANYWAYS WORKED AS I WANTED IT TO.

    • Zacocom ZaccomZ

      Plugin Command Shortcut for Textfx Plugin Date and Time uses ANSI character only not UTF8 in Not english documents

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      2k Views
      Zacocom ZaccomZ

      Another one:

      ñ

      Will error:

      xF1

    • appar1tionA

      Cursor positioning behavior

      Watching Ignoring Scheduled Pinned Locked Moved carets
      7
      1 Votes
      7 Posts
      6k Views
      appar1tionA

      @go2to i don’t have need for ascii drawings. and as for macros, i fill out any additional macros that i need with autohotkey. the combination of np++ and ahk make my personal workflow a breeze.

    • go2toG

      Undo & Redo: Strange Behavior in NPP

      Watching Ignoring Scheduled Pinned Locked Moved
      4
      0 Votes
      4 Posts
      4k Views
      dailD

      @go2to

      You can always take it upon yourself to become the Good Samaratin and write one. ;)

    • John Griswold142J

      Notepad++ just hanging on start - Windows 10

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      4k Views
      Claudia FrankC

      @John-Griswold142

      could it be that npp, on startup, has to load a file which is on a server?
      Than the 30 seconds could indicate an network timeout.

      Cheers
      Claudia

    • Alain MarinA

      Notepad to notepad++ importation .txt

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      3k Views
      Claudia FrankC

      @Alain-Marin

      allo,

      make sure that notepad++ uses the same font as MS notepad does
      make sure that notepad++ uses spaces/tabs as MS notepad does

      Cheers
      Claudia

    • Prasanna BurugupalliP

      Does NotePad++6.9.2 has Hex plg-in?

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      2k Views
      Daniel FuchsD

      You can download it from the plugin manager. Notepad++ never came with the plugin pre-installed, as far as I remember.

    • Jos MaasJ

      is regex condition possible in replace-string

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      0 Votes
      5 Posts
      8k Views
      guy038G

      Hi, @jos-maas,

      Oh yes ! You’re perfectly right. Even, in the example, described in my previous post, we don’t need any alternative !

      But, in that case, when a line does not match ( NO group jos ), this line stays unchanged, and we do not need, either, the ELSE part of the conditional replacement !

      So, the previous regex S/R, becomes :

      SEARCH (?-s)(?<jos>^\d+$)

      REPLACE ?{jos}Rewrite $+{jos}, as Group 'jos' exists

      And, with the original text :

      123 This is a test 4567890

      We would get, this time, the text :

      Rewrite 123, as Group 'jos' exists This is a test Rewrite 4567890, as Group 'jos' exists

      Note that, in replacement, the outer parentheses are removed, without any problem !

      Jos, for further information, about regular expressions concept and syntax, begin with that article, in N++ Wiki :

      http://docs.notepad-plus-plus.org/index.php/Regular_Expressions

      In addition, you’ll find good documentation, about the Boost C++ Regex library, v1.55.0 ( similar to the PERL Regular Common Expressions, v1.48.0 ), used by Notepad++, since its 6.0 version, at the TWO addresses below :

      http://www.boost.org/doc/libs/1_48_0/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html

      http://www.boost.org/doc/libs/1_48_0/libs/regex/doc/html/boost_regex/format/boost_format_syntax.html

      The FIRST link explains the syntax, of regular expressions, in the SEARCH part

      The SECOND link explains the syntax, of regular expressions, in the REPLACEMENT part

      You may, also, look for valuable informations, on the sites, below :

      http://www.regular-expressions.info ( The reference !! )

      http://www.rexegg.com

      http://perldoc.perl.org/perlre.html

      Be aware that, as any documentation, it may contain some errors ! Anyway, if you detected one, that’s good news : you’re improving ;-)

      Cheers,

      guy038

    • Jose Manuel Vela GarcíaJ

      UDL 2.0 in Notepad 7 release

      Watching Ignoring Scheduled Pinned Locked Moved
      20
      0 Votes
      20 Posts
      12k Views
      Kerem İspirliK

      ADA is not the only reason for UDL3. Generally UDL’s generally don’t work well with different themes and UDL3 is said to help with that, too: https://sourceforge.net/p/notepad-plus/discussion/331754/thread/bd2bc405/#757b

    • Marin DumontM

      how can i remove automaticly lines with differents caracteres

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      2k Views
      gerdb42G

      Do a RegEx search: ^<icon.*$\R. Replace with nothing.

    • Mario Enrique Martínez DuránM

      Conditional replacing

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      2k Views
      Claudia FrankC

      @Mario-Enrique-Martínez-Durán

      by using a regular express like

      find what:(\d+)(,)(\d+) replace width: $1\.$3

      Means it is looking for any number of digits followed by a comma and again digits

      To find out more about regular expression I would recommend reading
      nearly every post by @guy038 and the regex engines details as described here. In addition sites like http://www.rexegg.com/ and https://regex101.com/
      are useful too.

      Cheers
      Claudia

    • BenyaB

      Notepad++ 32Bit or 64Bit - Regarding Encryption of text plugin.

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      3k Views
      BenyaB

      Thanks!

    • giticemanG

      Add file name on each search result

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Louisa RankinL

      Image code issue

      Watching Ignoring Scheduled Pinned Locked Moved images html
      2
      0 Votes
      2 Posts
      2k Views
      Claudia FrankC

      @Louisa-Rankin

      you didn’t specify the programming language you use the I assume html.
      One of the best side explaining html is https://www.w3schools.com/
      Your question https://www.w3schools.com/html/html_images.asp

      Cheers
      Claudia

    The Community of users of the Notepad++ text editor.
    Powered by NodeBB | Contributors