• Convert multiple files from UTF-8 to ANSI

    9
    0 Votes
    9 Posts
    37k Views
    Vasile CarausV

    I run this code with python.exe on win10. I only change the path, and I want to test it. But after I copy the code on python.exe, nothing happen.

  • Named pipe server under Pythonscript

    4
    0 Votes
    4 Posts
    2k Views
    Claudia FrankC

    @Alan-Kilborn

    Copy and paste (reformatted line breaks) from activestate.
    Server via python script and client via nppexec
    As you see, I run the client 5 times and the message appeared immediately.
    Still can work with npp without delay/freezing.

    Can you execute commands in the console when running the server?
    How do you start it via Python Script menu? Or via a proxy script and execfile?
    Other different way?

  • find and replace help

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Shawn-Thomas

    what I get is that you only want to modify the decimal part, correct?
    If so, and if your data look exactly like you posted than

    find: \.\d+ replace: .000

    . means you are looking for the literal dot followed by
    \d+ one or more digits (as much as possible)

    Of course you need to check the regular expression box in find repalce dialog.

    Cheers
    Claudia

  • i want NPP to open a new document after closing the last one

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Antoon-Hermans

    isn’t this standard behavior?
    Or could it be that you have Exit on close the last tab checked?
    Settings->Preferences->General

    Cheers
    Claudia

  • the character " && " is invisible in bash scripts

    3
    0 Votes
    3 Posts
    2k Views
    dailD

    This sounds like a known issue with the SourceCode Pro font. Try switching to a different font.

  • Find list of files in notepad itself by mentioning part of file name

    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Harshvardhan-Kulkarni

    what do you mean?
    Searching for files only without checking the content?
    Or checking the content only if file pattern matches?

    The first can be achieved by using run menu, cmd and a dir command,
    the latter by defining a filter in find in files dialog.

    Cheers
    Claudia

  • switching letters with one regex

    17
    0 Votes
    17 Posts
    8k Views
    glennfromiowaG

    Thanks, @Scott Sumner, I’ve been workin’. But now my work seems to lie in using RegExes to do things I couldn’t do easily without them, so here I am, back again.

  • how to group words in batch of 50's

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Jim DaileyJ

    WordsRemaining = GetWordCount(Input);
    while (WordsRemaining >= 50) {
    Batch(50,Input);
    WordsRemaining -= 50;
    }
    Batch(WordsRemaining);

  • 0 Votes
    2 Posts
    4k Views
    chcgC

    Maybe a dedicated command tool like

    https://sourceforge.net/projects/base64/
    or
    http://www.f2ko.de/en/b64.php

    is more suited for your needs.

  • EDIT ALREADY DEFINED LANGUAGE (C)

    6
    0 Votes
    6 Posts
    3k Views
    glennfromiowaG

    @janlei0524 I think you may have missed where
    @dail said:

    It will not parse other header files to figure out what is “defined” but you can add a custom list of defines if there are some you know.

    If I’m interpreting that correctly, the

    #define SOMETEXT

    must be in the same file as the

    #ifdef SOMETEXT

    in order for the /* some code here */ to not be greyed out

  • Will donate if you can help!

    6
    0 Votes
    6 Posts
    3k Views
    aeryn KellyA

    Well I got it fixed. I had the person who wrote the file send me a replacement and it works fine. I will donate on the first when i get paid for the use of the software and the help. Thankyou everyone

  • Help me with Notepad++

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    glennfromiowaG

    Curious that you’re not doing that in your SQL query, but I’m assuming you want to do that using Find/Replace in Notepad. Other assumptions: 2) The column divider appears to be a space, but also could be a tab. 3) The words in the Name column will always begin with a letter and never a number (for example, this value would not be present in the Name column: Auto 1CF Asset Pricing Procedure). 4) Only a single space separates the words in the Name column. 5) The ROW_ID column will always begin with a single digit and a hyphen and will never contain spaces. This could be incorrect, but based on your sample data, that seems reasonable.

    So with your output open in Notepad++, open the Replace dialog (Ctrl+H works) and click the bottom radio button Regular expression. Also make sure the Match case checkbox is not checked. You’ll need to do 2 Replace operations. First, paste the next line into the Find what box:
    [ ]([a-z]\S+)
    (?# Space followed by letter followed by non-space chars)
    and paste this into the Replace with box:
    _spc\1
    (?# _spc followed by stuff in parentheses)
    Click the Replace All button and it should replace all spaces, except for the ones in front of the second column, with _spc.
    Then paste this into the Find what box:
    [ \t]+(\d-\S+)
    (?# 1 or more spaces or tabs followed by a digit then a hypen then non-space chars)
    and paste this into the Replace with box:
    =“\1”
    (?# =" followed by stuff in parentheses then by ")
    Click the Replace All button and it should replace all spaces before column 2 with =" and put a " after the value.

    Obviously, check the result to make sure the assumptions were correct and nothing unexpected happened, but that should get you the result from your example.

  • How to customize toolbar in npp ?

    Locked
    2
    0 Votes
    2 Posts
    12k Views
    YaronY

    Hello JAGDISHSINH,

    i have seen already seen customize toolbar plugin but it won’t allow me to add my custom buttons and custom command.

    You can do both with the Customize Toolbar plugin.
    Please read this thread.

    Best regards.

  • Tag panel?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Cliff EslerC

    I found a partial answer to my own question c/o this video tutorial at https://youtu.be/ERqrmk7kAYI , which explains how to configure tag completion and hints in Settings>Preferences>Auto-completion, and applies to both versions. That said, it would still be great to have a tag chooser panel similar to the one for ASCII characters.

  • Reply time restrictions

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    dailD

    You also made this reply about an hour ago.

  • find in files/replace methods

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Mikhail VasilevM

    @Scott Summer
    Thanks a lot, works fine. Topic closed.

  • Search last searched text

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Auto-update;without proxy

    6
    0 Votes
    6 Posts
    5k Views
    Claudia FrankC

    @Sandeep-Desai

    Could it be that you have multiple network cards in your pc?
    Maybe virtual ones? Can you be sure that tracert uses the correct interface?

    Cheers
    Claudia

  • settings - preference - delimiter trouble

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Function List addition

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