• 0 Votes
    24 Posts
    17k Views
    cmeriauxC

    You should keep original Python then install Jupyter with ‘pip installer’ that is provided with python

    http://jupyter.org/install.html
  • Save in color?

    2
    0 Votes
    2 Posts
    2k Views
    Js jSJ

    what happens when you save the html file in NPP and then open in web browser ?

  • can some one help me unscramble a PNG??? need help

    2
    0 Votes
    2 Posts
    2k Views
    Js jSJ

    you have to google the “png file format specification”, then open your png file using Notepad++

    using the hex plugin, check that the format of your png file matches the specification.

    if it does not match, then make the necessary corrections.

    keep saving after every correction, and viewing the result.

    using this method, it should take no more than 20 years to fix your file, depending on the size of the file, of course.

    or …

    you could submit your post someplace that deals with file recovery, not a place that discusses text editing.

  • how to save character set ?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    gstaviG

    Notepad++ only allow saving a document that was modified.
    Seems that encoding change is not considered a modification.
    Just add a space and delete it.

  • Help me plssssss

    2
    0 Votes
    2 Posts
    2k Views
    Js jSJ

    put the cursor to the beginning of text, just before the “1”

    press the delete key 24 times

    those awful numbers should be gone

    hope this helps

    seriously … you did not describe the problem at all

  • Can HTML and CSS be in one document(no importing)?

    2
    0 Votes
    2 Posts
    1k Views
    Js jSJ

    this appears to me an html question

    http://www.w3schools.com/tags/tag_style.asp

    if you wrote poetry using Notepad++, would you post a question here regarding prose?

  • Displaying superscript words

    2
    0 Votes
    2 Posts
    3k Views
    Js jSJ

    lol … it is in japanese

    this is what copied from webpage:
    しかし被害は出ているものの“精錬武救の聖神鎧イスラブ・レス・ラーグ”を始めとする様々な【救世主】

    the superscript is just to the right of 鎧 symbol, so it does copy

    here it is moved to previous line

    . . . . . . . . . . . . イスラブ・レス・ラーグ
    しかし被害は出ているものの“精錬武救の聖神鎧”を始めとする様々な【救世主】
    (i could not get the superscript text to display in the right place, so i added dots for filler)

    the text size would be the same as the rest of the document though.

    your best bet may be to copy and edit the html file

    here is part of the html from that webpage

    <br />  しかし被害は出ているものの“<ruby>精錬武救の聖神鎧<rt>イスラブ・レス・ラーグ</rt></ruby>”を始めとする様々な【救世主】固有の【魔法】により、連合軍の兵士達はまるでアンデッドのようなタフネスを発揮していた。<br />

    here is an extract of the main text and the associated superscripted text

    <ruby>精錬武救の聖神鎧<rt>イスラブ・レス・ラーグ</rt></ruby>

    the <ruby> tag encloses the text and its superscript

    i guess that you could insert a blank line and copy the superscript from the next line into the blank line

    i hope that this helps a little

  • how to create java calculator using notepad++

    2
    -2 Votes
    2 Posts
    3k Views
    Js jSJ

    i think that you need to go to a java oriented website for an answer to your question

    notepad++ is a text editor that you can use to write java code, once you know what the code is.

  • Files randomly becoming protected, requiring Administrator mode

    4
    0 Votes
    4 Posts
    4k Views
    Js jSJ

    that has happened to me when i edited a text file on a flash drive, and the flash drive became unplugged. the message showed up when i tried to save. (ctrl-s)

    if you are working on a network drive, it may be that the file location is becoming unavailable.

    also could happen when another program accesses your file in an exclusive mode.

    virus scanner maybe?

  • Instant crash at launch

    6
    0 Votes
    6 Posts
    8k Views
    chcgC

    nppftp with which version of n++? Current 7.3.1? Could you add the debug info like above about the used vesions and the installed plugins apart from nppftp.

  • Link: "Get More Plugins" doesn't work

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to define a UDL Delimiter with spaces

    4
    0 Votes
    4 Posts
    5k Views
    Js jSJ

    operators & delimiters
    delimiter 1 style

    open: Message="

    close: "

  • 0 Votes
    7 Posts
    3k Views
    Js jSJ

    bulk rename your files to the same extension

    file.1
    file.2
    file.3

    become

    file.1.txt
    file.2.txt
    file.3.txt

    or whatever extension you need

    in windows, open cmd window, navigate to your folder

    then use

    rename *.* *.*.txt

    or do a copy command

    copy *.* *.*.txt

    harder to rename back to original filenames, though

  • Row swap for multiple files

    11
    0 Votes
    11 Posts
    5k Views
    Js jSJ

    if you do not feel comfortable with regex, like me

    do search for <~~~ in all your files
    this is a “flag sequence”, so make sure that it is not already there

    if not found then go on.

    Find what: <FIRSTNAME>
    Repl with: <~~~LASTNAME>
    Mode: Normal or Extended

    Find what: <LASTNAME>
    Repl with: <~~~FIRSTNAME>

    Find what: </FIRSTNAME>
    Repl with: <~~~/LASTNAME>

    Find what: </LASTNAME>
    Repl with: <~~~/FIRSTNAME>

    Find what: <FIRSTNAME />
    Repl with: <~~~LASTNAME />

    Find what: <LASTNAME />
    Repl with: <~~~FIRSTNAME />

    now check for any missed ones

    Find what: <FIRSTNAME
    Find what: <LASTNAME

    now delete the ~~~

    Find what: <~~~
    Repl with: <

    you could reduce number of steps

    Find what: FIRSTNAME>
    Repl with: LASTNAME~~~>

    Find what: LASTNAME>
    Repl with: FIRSTNAME~~~>

    those two would cover <LASTNAME> and </LASTNAME>

    anyway i hope that it helps you or anyone else

  • Tip: Feature Reopen closed tab

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Wellington-Melo

    Tip: Use CTRL+SHIFT+T (if you haven reconfigured it.) ;-)

    Cheers
    Claudia

  • Set user-defined language as default?

    Locked
    10
    0 Votes
    10 Posts
    5k Views
    Claudia FrankC

    Good to see that you’ve got it sorted out.

    Cheers
    Claudia

  • Simple Regex Request -- TIME

    4
    0 Votes
    4 Posts
    2k Views
    gerdb42G

    Ah, yes, I assumed a fixed single-space Gap. And to match an arbitrary-length sequence of spaces, try \s+ instead of \s\s.

  • Regular request { .* }

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    guy038G

    Hello, Victor,

    I think that a possible solution would be :

    (?s)(?<=SkinMesh\r\n)\{.+?\}

    Notes :

    This first part of the regex is called a look-behind. It’s a condition that must be true, in order to valid the overall regex. but it will not be part of the final match. So the regex engine looks for the string SkinMesh, followed by the two End of Line characters CR + LF.

    If the string, above may be found, it, then, matches an opening brace character, followed by the shortest range of any character, even on several lines, till an ending brace character

    Best Regards,

    guy038

  • [REGEX] Remove a section from a list.

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    guy038G

    Hello, Dafug Xerath,

    Just to show that several regexes can achieve the same S/R, here is a second solution :

    Open your file in Notepad++

    Open the Replace dialog ( CTRL + H )

    In the Find what: field, type in @(?:.+?)(?=:)

    Leave the Replace with: EMPTY

    Select the Regular expression search mode

    Finally, click on the Replace All button

    Et voilà !

    NOTES :

    This regex looks, first, for the literal character @.

    At the end of the regex, the part (?=:), called a look-ahead, is a condition, that means that the overall match must be followed by a literal colon :.

    So, the inner middle part, .+?, tries to match the shortest range of any character between the @ character, included and the : character, excluded.

    The symbol + is a quantifier that means a maximum of characters, from 1 to n and the symbol ?, after the quantifier +, forces the regex engine to select the minimum range of any character, between the limits @ and :

    As this range of characters is included in the syntax (?: .... ), this means that the range, of each line, will NOT be stored for later use, either in the Find or Replace regexes.

    Finally, as the Replace dialog is empty, this range is just deleted, from each line !

    Beware : if you prefer to use the abelfourier’s search regex, the correct regex is, obviously :

    @(?:[^.]+)\.COM

    You’ll have to uncheck the Match case option

    Best Regards,

    guy038

  • How do I adjust font style and font size???

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Scott SumnerS

    @Art-Curator

    In the most basic sense, see Settings (menu) -> Style Configurator. Select “Global Styles” in the Language list, and “Global override” in the Style list. Then, on the right, you should see “Font name” and “Font size” and I think you can guess what to do from there.

    Those are just the baby steps of this type of configuration… :-D