• Password

    2
    -1 Votes
    2 Posts
    141 Views
    Alan KilbornA

    @Fred-Brown

    Why are you asking this question in a discussion forum where people discuss Notepad++ ??

    Suggest you find a more appropriate forum for it.

  • Draw colors to keywords then search with AND OR logic

    2
    0 Votes
    2 Posts
    476 Views
    Alan KilbornA

    This topic was first broached here: https://community.notepad-plus-plus.org/topic/21973

  • Regex: Insert a new line in files, only if that line not exist in files

    16
    0 Votes
    16 Posts
    779 Views
    Hellena CrainicuH

    thanks @guy038 and @Robin-Cruise

  • How can I replace a preinstalled language style with a user defined one?

    1
    0 Votes
    1 Posts
    305 Views
    No one has replied
  • How to get pure code line number for a *.vhd file?

    5
    0 Votes
    5 Posts
    406 Views
    W TXW

    @W-TX
    Here is exactly what I want to do:
    Search for “\n” for comment lines that start with “–”, excluding leading space characters, and empty lines.
    Replace with a space.

    After the Notepad++ shows the changed file’s line number, the pure code line number, click undo icon to return to prior status.

  • Dark Mode style for .ini & .properties files

    3
    0 Votes
    3 Posts
    879 Views
    dimizunoD

    @PeterJones,

    Thanks for the quick answer. The Style Configurator is very helpful and I can for sure live with that. I was just thinking that it might be unintentional that the same dark blue fg color as in the light theme (#0000FF) is used here on a dark background. Similar languages like YAML and CSS have changed to a lighter fg color so I thought INI and PROPERTIES might have been missed. As you said, the last releases had a couple of style adjustments / fixes in place as well.

    Thanks again for quick response.

  • File content upside down

    2
    0 Votes
    2 Posts
    600 Views
    Alan KilbornA

    @Gian-Matteo

    Not to just look at it that way.

    But if you want to actually change it to be that way, Line Operations on the Edit menu has a command called Reverse Line Order.

    Of course, you could execute that command, look at the result, and then Undo it.

  • Deleting full words after certain length (after 36 char)

    3
    0 Votes
    3 Posts
    230 Views
    Net BuyerN

    @Terry-R : Thanks for your help. Worked like charm.

  • Search for a text and copy the previous lines of codes

    27
    0 Votes
    27 Posts
    3k Views
    Scott NielsonS

    @guy038 Suppose if I don’t have a link, that is </a> and I am not sure what to put there (because it varies), will this RegEx work if I am using the same search strings that you typed above: (?s-i)((?<!abc)(?<!xyz)(?<!xxx).)*?\K</span>\s*</p>?

  • Update manually

    3
    0 Votes
    3 Posts
    204 Views
    Rick GrunwaldR

    Thanks for the reply… I will give this a try

  • Regex help

    4
    1 Votes
    4 Posts
    199 Views
    Alan KilbornA

    @Alan-Kilborn said in Regex help:

    leaving the $

    Hmm, for maximum clarity I should have said:

    …leaving off the $ …

  • Search, Find string with parentheses around it.

    3
    1 Votes
    3 Posts
    186 Views
    Richard HowardR

    @PeterJones
    Got it.
    Thanks!

  • Adding parentheses around xml tags.

    8
    2 Votes
    8 Posts
    541 Views
    Richard HowardR

    @Richard-Howard
    Just as a follow-up, this appears to have solved my need, saving me hours of edit time.
    Thank you!!

  • need help with Remove Unmarked Lines option

    3
    0 Votes
    3 Posts
    603 Views
    premkumar bhaskalP

    great. Thank you for the quick reply.

  • Replace xml tagging

    19
    0 Votes
    19 Posts
    1k Views
    PeterJonesP

    @Richard-Howard

    I’m starting to get the hang of it ( I hope :) ).

    8c6c8f1b-419f-442f-be6e-48912be41cc0-image.png

    It worked. Good job. :-)

    And a note: one of the things I like about this site, compared to certain stack-based exchange forums, is that this site doesn’t limit you to “one right answer”; many times, there are multiple posts in a discussion that help lead to a final answer, and I like being able to reward them all.

  • Regex help: Find/Replace only on lines that include specific words

    11
    0 Votes
    11 Posts
    721 Views
    guy038G

    Hi, @비공개, @alan-kilborn, @Neil-schipper and All,

    OK, @비공개, I’m going to give some pieces of information but, as always :

    You have to know how to make cement before you can put two bricks together

    You must know how to put two bricks together before building a wall

    You must know how to build a wall before building a room

    You must know how to build a room before building a house

    and so on !

    In other words, check this FAQ which gives you the main links to learn regular expressions, from top to bottom ;-))

    Now, let’s go :

    ---------------------------------------------------------------------------------------------------------------------------------------------------------- Regarding MODIFIERS, generally met at BEGINNING of the regex, but which may occur at ANY location within the overall regex : (?-i) From this point, search care about letter's CASE (?i) From this point, search does NOT care about letter's CASE (?-s) From this point, any regex dot symbol represents a SINGLE STANDARD character. So the . is UNICODE equivalent to the NEGATIVE class character [^\r\n\f\x{0085}\x{2028}\x{2029}] for an Unicode encoded file and equivalent to [^\r\n\f] for an ANSI encoded file (?s) From this point, any regex DOT symbol represents ABSOLUTELY ANY character, included all the LINE-ENDING chars (?-x) From this point, any LITERAL SPACE character is SIGNIFICANT and is part of the overall regex ( IMPLICIT in a N++ regex ) (?x) From this point, any LITERAL SPACE character is IGNORED and just helps READABILITY of the overall regex. This mode is called FREE-SPACING mode and can SPLIT in SEVERAL lines. In this mode : - Any SPACE char must be written [ ] or \x20 or escaped with a \ character - Any text, after a # symbol, will be considered as COMMENTS - Any litteral # symbol must be written [#] or \x23 or escaped as \# (?-m) From this point : - The regex symbol ^ represents only the VERY BEGINNING of the file, so equivalent to the regex \A - The regex symbol $ represents only the VERY END of the file, so equivalent to the regex \z (?m) From this point, the assertions ^ and $ represent their USUAL signification of START and END of line locations ( IMPLICIT in a N++ regex ) ---------------------------------------------------------------------------------------------------------------------------------------------------------- Regarding GROUPS : (•••••) It defines a CAPTURING group which allows, both : - The regex engine to STORE the regex ENCLOSED part for FURTHER use, either in the SEARCH and/or the REPLACE part - The regex ENCLOSED part to be possibly REPEATED with a QUANTIFIER, located right after (?:•••••) It defines a NON-CAPTURING group which only allows the regex ENCLOSED part to be REPEATED and which is **not** stored by the regex engine Note that the MODIFIERS, described above, may be INCLUDED within the parentheses : - In a CAPTURING group as, for instance, ((?i)•••••) so that the INSENSITIVE search is RESTRICTED to the contents of this group, only - In a NON-CAPTURING group, TWO syntaxes are possible : for instance : (?:(?i)•••••) or the shorthand (?i:•••••) CAPTURING groups can be RE-USED with the syntax : - \1 to \9 in the SEARCH and/or REPLACE regexes for reference to group 1 to 9 - $1 to $99 in the REPLACE regex ONLY for reference to group 1 to 99 - ${1} to ${99} in the REPLACE regex ONLY for reference to group 1 to 99 For instance, the ${1}5 syntax means contents of GROUP 1 , followed with digit 5 where as the $15 syntax would have meant contents of GROUP 15 - $0 or ${0} in the REPLACE regex ONLY for reference to the OVERALL math of the SEARCH regex ---------------------------------------------------------------------------------------------------------------------------------------------------------- Regarding QUANTIFIERS, 6 syntaxes are possible {n} , {n,}, {n,m}, ?, + and *. Note that : - {n} EXACTLY n times the character or group, PRECEDING the quantifier - {n,} n or MORE times the character or group, PRECEDING the quantifier - {n,m} BETWEEN n and m times the character or group, PRECEDING the quantifier - ? is equivalent to {0,1} - + is equivalent to {1,} - * is equivalent to {0,} They are considered as GREEDY quantifiers because they match as MANY characters as possible If these 6 syntaxes are followed with a QUESTION MARK ?, they are called LAZY quantifiers because they match as FEW characters as possible For instance, given the following sentence : The licenses for most software are designed to take away your freedom to share and change it - Regex (?-s)e.+?ar, with the LAZY quantifier +?, matches --------------------------- - Regex (?-s)e.+ar , with the GREEDY quantifier +, matches --------------------------------------------------------------------------- If theses 6 syntaxes are followed with a ADDITION sign +, they are called ATOMIC quantifiers. - They are quite similar to their GREEDY forms, exceot that, in case of failure, they don't backtrack to attempt further possible match(es) - Note that this ADVANCED option should be studied when you'll be rather ACQUAINTED with regexes ! ---------------------------------------------------------------------------------------------------------------------------------------------------------- BTW, a quick tip to SIMULATE a NORMAL search when the REGULAR EXPRESSION mode is selected : START the search zone with the \Q syntax : For instance, the regex \Q/* This is a C-comment */ will find the LITERAL string /* This is a C-comment */

    Now, I will rewrite my last regex, with your improvement, in the Free-Spacing mode :

    ---------------------------------------------------------------------------------------------------------------------------------------------------------- (?x-is) # FREE-SPACING mode, search SENSITIVE to CASE and DOT regex symbol represents a SINGLE STANDARD char (?: # BEGINNING of a NON-CAPTURING group ~~choice # Matches the string ~~choice, with this EXACT case | # OR ( ALTERNATION symbol ) (?!\A)\G # Matches from RIGHT AFTER the location of the LAST match, IF NOT at the VERY BEGINNING of the file ) # END of the NON-CAPTURING group .+? # The SMALLEST NON-NULL range of STANDARD characters till... \K # CURRENT match is DISCARDED and working location is RESET to this POINT (?<!\() # ONLY if it's NOT PRECEDED with a STARTING parenthesis symbol "[!'.?\w-]+" # ... a NON-NULL range of WORD chars or the characters !, ', ., ? and - (?!\)) # ONLY if it's NOT FOLLOWED with an ENDING parenthesis symbol NOTES : - This syntax is totally FUNCTIONAL. To be convinced do a NORMAL selection from (?x-is) to ENDING parenthesis symbol and hit the Ctrl + F shortcut => This MULTI- lines regex is AUTOMATICALLY inserted in the 'Search what' zone - The \G assertion means that the NEXT search must start, necessarily, RIGHT AFTER the LAST match ! - I rewrote your regex part [A-Za-z \-\.\!\?'] as [!'.?\w-] because most of the punctuation signs do NOT need to be ESCAPED, within a CLASS character. - However note that the DASH - must be found at the VERY BEGINNING or the VERY END of the class character, when NON escaped - I prefer the \w syntax to [A-Za-z] because \w also INClUDES all the ACCENTUATED characters of foreign languages - You must use ONLY the REPLACE ALL button ( Do NOT click on the REPLACE button for SUCCESSIVE replacements : it won't work due to the \K syntax ! ) - If you don't tick the WRAP AROUND option, move preferably the CARET at the VERY BEGINNING of current file - From BEGINNING of file, as the regex engine must SKIP some LINE-ENDING characters to get a match, the \G assertion is NOT verified and the regex engine must necessarily look, FIRST, for a string ~~choice - Then, from RIGHT AFTER the word choice, it grasps the SMALLEST NON-NULL range of STANDARD chars .+? till a "•••••" structure, but ONLY IF NOT embedded between PARENTHESES itself ! - And, due to the \K syntax, ONLY the part "•••••" is the FINAL match desired - This FINAL part is changed with the REPLACE regex \($0\) which just rewrites the string "•••••" between PARENTHESES. The parenthesis symbols must be ESCAPED as they have a SPECIAL signification in REPLACEMENT - Then, from RIGHT AFTER the closing " char, as the regex CANNOT find any other ~~choice string, the (?!\A)\G.+? part, again, selects the SMALLEST NON-NULL range of STANDARD characters till an OTHER block "•••••", execute the REPLACEMENT and so on...

    In the example, below, in each second line ( Regex types ) :

    The dot . represents any char, found by the regex dummy part .+?

    The bullet represents any char, found by the regex useful part [!'.?\w-]

    The character " and the string ~~choice stand for themselves

    Text processed ~~choice(["Red", ("Blue"), ("Orange"), … ,"Purple"]) Regex types ~~choice.."•••"..........................."••••••" Match number BEFORE \K 1111111111 222222222222222222222222222 Match number AFTER \K 11111 22222222 Text processed ~~choice([("Red"), "Blue", "Orange", … ,("Purple")]) Regex types ~~choice..........."••••".."••••••" Match number BEFORE \K 1111111111111111111 22 Match number AFTER \K 111111 22222222 Text processed ~~choice(["Red", "Blue", "Orange", … ,"Purple"]) Regex types ~~choice.."•••".."••••".."••••••"....."••••••" Match number BEFORE \K 1111111111 22 33 44444 Match number AFTER \K 11111 222222 33333333 44444444

    I hope that you’ll find this article useful, in any way !

    However, let me add that the \G and \K assertions, as well as atomic groups and recursive regexes or backtracking verbs ( not discussed ), are difficult notions and I can assure you that there are a LOT of regex things that you need to know before starting to use them !

    Best Regards,

    guy038

  • 0 Votes
    2 Posts
    173 Views
    Terry RT

    @한성빈 said in Even before this update, Korean has been marked half the way down from the basic line.:

    Even before this update, Korean has been marked half the way down from the basic line.
    How can I fix it?

    I would say the font selected dictates where each character appears in relation to the line. It will also affect the ability to show some characters so when you try other fonts don’t be surprised if you lose the ability to even type the Korean characters.

    Terry

  • regex search replace \1 not working

    5
    0 Votes
    5 Posts
    2k Views
    Neil SchipperN

    @PeterJones said in regex search replace \1 not working:

    the \n will replace with just the LF character

    I wasn’t aware of that, and it’s good to know. I guess I assumed replace behaved like in some HLLs (printf in ‘C’, IIRC) which automagically terminate lines according to the conventions of the O/S.

  • regex: Match everything up to linebreak but not linebreak

    13
    0 Votes
    13 Posts
    1k Views
    Hellena CrainicuH

    I find the regex which I needed: \b\w+\b(?=[\w\s]+\|)

    and in Python should be:

    words = re.findall(r'\b\w+\b(?=[\w\s]+\|)', new_filename)

    thanks @Neil-Schipper You give me a good ideea ;)

  • Increase Font Size of UI

    2
    0 Votes
    2 Posts
    2k Views
    PeterJonesP

    @Satori ,

    I found how to increase the text in documents by default,

    You could have posted this in reply to your other post, rather than starting a new topic, so I would know that you’d already figured out before I started my reply.

    but the menu text itself is still quite difficult to read.

    That’s a Windows OS setting. Notepad++ inherits that size from Windows.