• How to extract a certain text from lines with notepad?

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Scott SumnerS

    @ani-rodet

    This post looks very similar to this thread created by you. I think that if you post again with such questions, you should also show us WHAT YOU TRIED ON YOUR OWN before you posted. Otherwise it simply seems like the people supporting this Community are just doing your work for you (instead of giving you hints/help) and you should pay them for that help.

    And “I await your prompt reply” in such a context…is offensive.

  • Log-in into the community

    Locked
    3
    1 Votes
    3 Posts
    936 Views
    Daniel WehrliD

    Thank you.

  • I want to convert all numbers to a single line per number

    Locked
    3
    0 Votes
    3 Posts
    940 Views
    Ebenezer DareE

    @Scott-Sumner

    Thanks Scott.
    It works perfectly.

  • CTRL+F4 - easy but very useful shortcut for Windoze users

    Locked
    2
    1 Votes
    2 Posts
    1k Views
    gstaviG

    Settings -> Shortcut Mapper …
    Close

    It took me time to figure out your question since I mapped it so long ago.

  • Spell Check Automatically

    8
    0 Votes
    8 Posts
    2k Views
    Scott SumnerS

    @PeterJones said:

    What notifications did you get from me on this thread?

    I got 2 upvotes. I don’t really care about this stuff, I was actually just giving Jim a hard time (probably wrongly). :-D

  • More tokens for comment brackets

    Locked
    2
    0 Votes
    2 Posts
    666 Views
    Jim DaileyJ

    @Zygmunt-Dreszer
    You can use the UDL’s delimiter styles to do that. Use (* for Open and *) for Close, for example.

  • Highlighting problem in Find and Replace

    Locked
    5
    0 Votes
    5 Posts
    1k Views
    Scott SumnerS

    Right. The green highlighting has NOTHING to do with a Find action’s result. Find and the Smart Highlighting feature are (almost) totally separate. I say almost because of the unfortunate design decision to have Use Find dialog settings as an option for Smart Highlighting… Sigh…

  • User Define Language

    Locked
    6
    0 Votes
    6 Posts
    2k Views
    Scott SumnerS

    @Joy-Hon

    You could probably script a custom lexer without a huge amount of effort (depending upon your experience level). @PeterJones cites some good references in this thread – see where it says "various custom lexers written in PythonScript: "

  • Need to merge all lines before a blank line

    Locked
    10
    0 Votes
    10 Posts
    3k Views
    Scott SumnerS

    @Terry-R is right. I botched the original try at it because I didn’t notice that the replace action didn’t put a space between the lines that were joined. I totally missed that–TWICE! Sorry about that. (Thanks to Terry for pointing that out!)

    @Jesse-Mwangi said:

    the regex brings all the data in one line

    So the reason that it all ends up on one line is that you have a single blank space on the lines that I interpreted as being totally empty from your sample data. I figured this out by downloading your file (otherwise that would have been quite difficult to discover!).

    @Jesse-Mwangi, so I presume that @guy038 's help has you on the right track now…please post again if not and we’ll take another look.

  • Pascal syntax highlighting nested comments

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Krzysztof-Jachowicz

    Issue created here for this.

  • About the FAQ Desk : Where to Find REGEX documentation ?

    Locked
    1
    4 Votes
    1 Posts
    618 Views
    No one has replied
  • [META] Forum Timestamps

    Locked
    6
    1 Votes
    6 Posts
    3k Views
    PeterJonesP

    Thanks, @guy038

  • Is there a way to set a default language type?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Edwin ClementsE

    That worked! Thanks a bunch.

  • how to remove text before (regex)

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    Scott SumnerS

    Try this:

    Find what zone: (?-s)^.+?\|
    Replace with zone: make sure this is EMPTY
    Search mode: Regular expression

  • File changed check loses focus from last file

    Locked
    2
    1 Votes
    2 Posts
    738 Views
    Scott SumnerS

    @David-Luca

    Bug reports and feature requests are filed on github, see a bit more detail on the process here. I’m sure this one already exists for this so logging a new one is pointless and just adds to the massive clutter. Try some searching and then you can add any new input you have about the problem as a comment to an existing issue. You be the judge about the likelihood of this being “fixed” anytime soon when you see the number of open issues.

  • Find matching word between two text file

    Locked
    6
    0 Votes
    6 Posts
    5k Views
    Frederick SmithF

    Hi @terry-r, @guy038 and All

    First I want to thank you both: @terry-r and @guy038 - for taking your time and giving me help.

    Both solution works - maybe a bit different - but both gives the good results what I was looking for.

    Let me say, how much I appreciate the community. Thanks you!

    Thanks again guys!

  • last modified date in status bar?

    40
    1 Votes
    40 Posts
    18k Views
    dailD

    @SalviaSage

    Testing is always appreciated in case there are any bugs that show up.

    The plugin itself is mostly stable as far as the set of features it has, so theres no immediate plans to add new functionality but that doesn’t others may have ideas I’ve never thought of.

  • Remove down arrow from Windows installer icon

    Locked
    1
    0 Votes
    1 Posts
    580 Views
    No one has replied
  • convert multiple columns to rows using notepad

    Locked
    2
    0 Votes
    2 Posts
    7k Views
    Terry RT

    This is very simple. I’m surprised you have not already figured it out. Basically (from your sample) you want to change all spaces to a carriage return/line feed. So each word will be on a separate line.

    The regex is:
    Find What: \h
    Replace with: \r\n
    As this is a regular expression you need the search mode in “regular expression” mode and have wrap around ticked.

    So the \h is a horizontal whitespace character: tab or Unicode space separator.
    The \r and \n are the carriage return and line feed characters.

    As a suggestion, read up on regexes by starting with:
    https://notepad-plus-plus.org/community/topic/15765/faq-desk-where-to-find-regex-documentation in our FAQ and also by using a regex tester (there are a few on the web) including the one mentioned in that post.

    It’s nice to see posters trying to find the solution themselves (especially one as simple as this one), then if in doubt or needing guidance, to come to the forum and show what they’ve tried and their samples.

    Terry

  • i am fighting with the conversion of columns to rows

    Locked
    3
    0 Votes
    3 Posts
    953 Views
    Seenu GudduS

    Thanks Perter Jones… and also thanks for quick response… it works perfectly…