• Howto copy results with metadata from "Find result" pane?

    4
    0 Votes
    4 Posts
    2k Views
  • working with HEX-Editor, the notepad++ crash

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Repeat a line n number of times with a different value in each line

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Jim DaileyJ

    Use a scripting language like AWK, PERL, or Python.

  • How to hide lines that don't match?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Jim DaileyJ

    I don’t quite understand how you plan to modify the <RawDialog> lines without using search and replace (or at least using search inside some macro). Can you clarify?

    It appears you might assume that if the lines are hidden, then search/replace will not affect them. I did a quick experiment, and that doesn’t seem to be the case since my hidden lines were modified by a Replace operation.

    Perhaps using a tool like sed, AWK, PERL, or Python would be a better way to proceed.

  • countdown timer

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    cipher-1024C

    Yacine,
    What you’re looking for isn’t really a Notepad++ thing. You should google setTimeout, javascript and HTML timer. That will get you started.

  • need help with this

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    cipher-1024C

    Hi Joe,
    I think what you’re looking for is a negative lookahead. Something like this:

    (BodyArmour\s+?StabVest(\s+?)?\r\n)(?!(\s*?)Training)

    so you’re looking for a line (possibly with a space at the end) where the next line doesn’t start with some possible white space and “Training”. You can add the additional text like the 99.9999 and the next line if required.

    Your replace line could then look something like this:
    \1\t\tTraining\t\t\t 99.99999\r\n\t\tTazerTrained\t\t true\r\n

    Where the \1 is the first pair of parenthesis in the “find” regex. I’m not able to download your example file from work (blocked by our proxy), but if the “Training” and the “TazerTrained” can be in any order your regex will be more complicated. It could be done, but you may be using the wrong tool at that point.

    A friendly word of advice: when you’re posting a question, put a very general description in the topic, you’ll probably get more traffic and thus quicker help.

    Hope this helps. Good luck!

  • Regex for Function List in User Defined Language (Business Rules!)

    16
    0 Votes
    16 Posts
    10k Views
    John BowmanJ

    you are correct. and yes, it does work with the UDLs. I have that working, but was only asking if I could use the cool regex syntax detecting settings in functionList.xml to accomplish the same thing. Perhaps I could do it more auto-magically over in there, but that is a subject for another thread. I’m going mark this bad boy solved. THANK YOU!!!

  • Disable/Remove "Sort by Name" in Doc Switcher?

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Want to customise Ruby syntax for another program

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Muhammad Yunus Ahmad MazukiM

    Edit 1.
    A much Simpler solution would be that I can view the Ruby language itself in the ‘Used Defined Language’ tool.

  • update column data for specific rows

    3
    0 Votes
    3 Posts
    3k Views
    Matyáš KrupičkaM

    How are those columns delimited?

  • Tab and Help screen font size too big - Windows 10

    6
    1 Votes
    6 Posts
    16k Views
    Oliver KoppO

    The issue is also discussed at http://superuser.com/q/934701/138868. The current work around is to use Settings -> Preferences -> General -> “Tab Bar” -> Uncheck “Reduce”

  • What's the intended method for using auto insert of () {} etc?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Jim DaileyJ

    You can type the closing “)” for sure. Don’t know about the “}”.

  • file only opens in code and not sentences any more, why?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Matyáš KrupičkaM

    Hi Penny,
    I’m afraid that without either an example of that file, or more information, noone will be able to help you.
    What kind of file are you opening? What kind of data is it suppose to contain? What language is the file written in? Is it the problem with all files, or just this one? In what editor did you open it in past? Can other plaintext editors (like normal win notepad) open it?
    Etc.

  • 0 Votes
    2 Posts
    8k Views
    Matyáš KrupičkaM

    Hi,
    there are none :)

    If you want to perform this kind of replacement, you will need to learn regular expressions (a.k.a. regexp).

    There are dozens of tutorial on the net, e.g. here:
    http://www.regular-expressions.info/

    I should warn you though, that regexp are like women: powerful, mysterious and unforgiving :)
    And they usually don’t behave the way you expect.
    But don’t be discouraged. It is a great tool, if used properly. In my work, where I deal a lot with a plaintext processing, I would be lost without them

    Anyway, answer to your particular question about space between two numbers is
    with regexp search mode:
    Replace
    (\d),(\d)
    with
    \1 \2

  • DSpell Check

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Kasper GraversenK

    supply a screenshot

  • Tamil Unicode font in notepad++

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • How to join 4 line in 1 onbig file

    2
    0 Votes
    2 Posts
    2k Views
    Matyáš KrupičkaM

    replace with regular expression mode

    (^id.*)\r\n(.*)\r\n(.*)\r\n(.*)
    with
    \1 | \2 | \3 | \4 |

    It is pretty ugly regexp, but will do the trick

  • Replacement of code (several lines) by only one line

    4
    0 Votes
    4 Posts
    3k Views
    Matyáš KrupičkaM

    EDIT:

    When preparing one line, replace
    \r\n
    with
    \\r\\n

  • Save Question

    4
    0 Votes
    4 Posts
    3k Views
    Scott SumnerS

    It might be a bit unfair to “not recommend” a program because you don’t like one of its many features, especially when that one behavior is configurable.

  • How to automate escaping apostrophes in sql

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied