• Replace specific number and letter

    3
    0 Votes
    3 Posts
    213 Views
    Alexandros XatzidimitriouA

    Thanks a lot guy038! This is exactly what I was looking for!!!

  • Lag spikes/freezes when using multiline String in ps1 file

    2
    0 Votes
    2 Posts
    555 Views
    PeterJonesP

    @Kevin-Holtkamp said in Lag spikes/freezes when using multiline String in ps1 file:

    @"
    string content
    "@

    With a powershell file with just that content, I don’t notice any lag / freezes. My guess is something else is going on.

    Please go to the ? menu, select Debug Info, and paste the results into the forum.

    Also, see if it freezes for you when all you have in your powershell file is

    @" string content "@

    If it does freeze from just that, let us know. If not, there is going to have to be more debug.

    My guess is something else is going on: either it’s because of a really long file, or because of one or more plugins, or both. (There could also be many things I haven’t considered.)

  • Font of this text

    9
    0 Votes
    9 Posts
    5k Views
    PeterJonesP

    @overstop said in Font of this text:

    I like the font of this website and font of the posts, so I was curious.

    Ah. Sorry. This forum is specifically about Notepad++, the text editor. So we naturally assumed you were asking about Notepad++ fonts, not the fonts of this website.

    You would have to look at your browser settings, as well as the underlying CSS styling, to know for sure. Some browsers (like Chrome) have ways to find out what the actual chosen font/family is, after all stylesheets have been applied.

    A quick look at the css shows that normal text uses

    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";

    CSS will search for those fonts on your system, in the order listed.

    and code/fixed-width text uses

    font-family:Menlo,Monaco,Consolas,"Courier New",monospace;

    My guess, if you’re browsing on Windows and your browser isn’t set to override CSS-based font, is that you are seeing Segoe UI for normal text and Consolas for fixed width text.

  • Replace text with incremented counter?

    9
    0 Votes
    9 Posts
    16k Views
    Alan KilbornA

    @Rupert-Russell

    Starting to wonder if this isn’t spam for TextPad as you posted virtually the same thing in THIS THREAD that has an extremely similar title.

    If it is NOT spam, then what is the point of posting it here?

  • "Search" / "Find" pane

    5
    0 Votes
    5 Posts
    464 Views
    Alan KilbornA

    @asvc said:

    check this topic: … (you might want to read starting at the last post)

    “last post” has no reasonable meaning if new “last posts” have been added since you typed that. :-)

    You can link to a specific posting in a topic by right-clicking on the posting time and copying the link address and then pasting that.

    So for example, a posting might say “asvc about 2 hours ago”. Right-click on the “about 2 hours ago” part and copy that link.

  • Regex searching for NUL characters

    5
    2 Votes
    5 Posts
    4k Views
    guy038G

    Hi, @alan-kilborn and All,

    Here is a solution, as a work-around, to manage the presence of the NUL character(s) in a file :

    Choose an other character, not used, yet, in your file. Let’s take the \x{007F} control character Delete

    So, you first run the regex S/R, below, with the Wrap around option and the Regular expression search mode

    SEARCH \0

    REPLACE \x7F

    Then you perform all your text manipulations, in Notepad++

    Finally, save your file and exit N++

    As we cannot insert any NUL character, with an N++ replacement, we’ll simply use the well known utility sed.exe

    You can download its last Windows v4.8 - 64 bits version, from https://github.com/mbuilov/sed-windows

    Or other versions, from https://github.com/mbuilov/sed-windows/tree/master/archive

    Then, in a DOS console window, type in and execute this simple command :

    sed.exe -i s/\x7f/\x00/ Your_File

    Best Regards,

    guy038

  • Find and Insert rather Replace

    3
    0 Votes
    3 Posts
    2k Views
    Alan KilbornA

    Another technique is to use \K at the end of your find string.
    In that usage you then do not use ${0} in the replace.
    Your replacement string will be inserted at the end of the text your find string matches.
    I mention this usage because that seems to be what you are needing.

    However, if you ever have a situation where you want your find string text to be in the middle of a replacement, then the ${0} usage is the solution.

  • [FunctionList] Regex OK in Regex101 but broken in N++

    11
    1 Votes
    11 Posts
    1k Views
    Mateos81M

    It’s a montage made by a contributor to show me what he’d like to have, and since that was exactly what I wanted myself, I took the picture and forwarded it over here ^^’

    You can see there’s a gray line hanging kind-of off, but still I’ve asked him to be sure, and yes it was a montage (else he’d have pushed his script to the repo I guess)

    Thanks for the clarifications @MAPJe71 :)

    So we can’t push more forward for now; thank you very much to all of you following and helping on this topic!

    Take care people

  • 2 Votes
    1 Posts
    147 Views
    No one has replied
  • Make Regex for anti swear

    2
    0 Votes
    2 Posts
    313 Views
    Alan KilbornA

    @Fabio-grossi

    Regex isn’t going to be able to help you with this task.

  • Delete with Replace mode!

    3
    0 Votes
    3 Posts
    291 Views
    cmeriauxC

    sorry @guy038 I stole the regex star from you ;-)

  • Filter the data !!!

    63
    0 Votes
    63 Posts
    17k Views
    EkopalypseE

    @guy038

    This is how it looks on your system, but I assume it might look different on a system where OSMANYA is more common.
    That is, of course, if there is a localized version of Windows that OSMANYA takes into account.

  • find group of machting characters

    3
    0 Votes
    3 Posts
    269 Views
    Alan KilbornA

    @bowoo-king said in find group of machting characters:

    duplication of a group of 8 characters in a string

    The example showed digits so that’s what my solution was tailored to.
    But…
    If it is truly “characters” then this might be more appropriate:
    (?-s)(.{8}).*?\1

  • Supported versions of Notepad++

    2
    0 Votes
    2 Posts
    246 Views
    Alan KilbornA

    @Mary-Lou-Sullivan

    Typically the reality of how it goes is you ask a specific question about what you think is a defect.
    You can do this in about any version you like.
    Probably someone will try out your suspected bug in whatever version they have, in all likelihood a later version than yours.
    If they do not experience the same problem you did, their advice might be for you to upgrade to a newer version and try again.

    If you’re asking if there are dedicate teams supporting each of version 7.1.x, 7.2.x, etc. (or something like that) and then fixing bugs in these specific versions for release as later 7.1.y, etc, then the answer is NO.

  • Using RegEx to format text for import

    5
    2 Votes
    5 Posts
    634 Views
    Makwana PrahladM

    Hello

    List itemIdentify the common text string you wish to remove, in this example, “Accepts Google Pay”

    List itemClick the Column Options dropdown arrow and select Set regular expression. The Set regular expression dialog box appears.

    List itemIn the Match box, enter “Accepts Google Pay\s+(.+)” to identify the Accepts Google Pay string and then capture the remainder of the string in the first capture capture group.

    List itemIn the Replace box, enter $1 to print out the first capture group. The prefix disappears from the column data, leaving the remainder of the string intact.

    I hope this information will be usefull for you.
    Thank you

  • Themes from Style Configurator not applying to User-Defined Languages!!

    2
    0 Votes
    2 Posts
    1k Views
    phenomenal11P

    nevermind… i found the problem… Go to the User Defined Language box and select your language… in the Folders and Default tab click the Styler Tab under “Default Style” and choose your font color and live happily ever after!

  • Mark all in open tabs if found , copy . cut . remove.

    10
    0 Votes
    10 Posts
    599 Views
    Alan KilbornA

    @Ekopalypse

    Well that certainly is very nice.

  • massive bug with comments in user defined language

    5
    0 Votes
    5 Posts
    286 Views
    EkopalypseE

    @audio-scavenger

    yes, looks like force at beginning of line corrupts the styling for some comments.

  • 0 Votes
    10 Posts
    9k Views
    audio scavengerA

    we have the same problem and “Operators & Delimiters” is not a good alternative
    this will highlight as comment all the text that starts with a dash even in the middle of a line which is not what we (and this poster) want

    i installed various older versions of np++ portable and this bug happens between version 6.6.6 and 6.7.9

  • Confused by Doc Switcher MRU vs Recent Files List

    9
    0 Votes
    9 Posts
    1k Views
    Alan KilbornA

    @Mr-Brunes said in Confused by Doc Switcher MRU vs Recent Files List:

    Close button ‘x’ icon (saves right-click > Close)

    Here’s where user preference comes in.
    I dislike an “x” icon of this type.
    This is possible on the existing Notepad++ tab bar, by the way; in fact, it’s the default.
    Why don’t I like it?
    Because I’m far too likely to hit it by accident, and as it is immediate, the tab is simply cooked/over/done-for.