Community
    • Login

    Skipping Blank Lines?

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    4 Posts 4 Posters 3.4k Views 3 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Daily RoeD Offline
      Daily Roe
      last edited by

      I have 7253 lines. I need to have all the words in a paragraph on one line. I made a macro will move all words in a paragraph, but i need to skip the empty/blank lines that seperate paragraphs.

      1. “Doss,” said Mrs. Stirling, “what do you mean by taking off your hat? Put it on instantly!”
      2. Valancy put it on instantly. She was cold with fear lest Dr. Stalling should immediately summon her up front again.

      I need my macro to skip line 2 in the example above. Can this be done?

      Claudia FrankC 1 Reply Last reply Reply Quote 0
      • Claudia FrankC Offline
        Claudia Frank @Daily Roe
        last edited by

        @Daily-Roe

        only if the pattern would be the same over the whole text otherwise
        you would need some regex or script to do the job. Or you find some similarity
        and, maybe, can use bookmarks !?

        Cheers
        Claudia

        1 Reply Last reply Reply Quote 0
        • gerdb42G Offline
          gerdb42
          last edited by

          You may try the following RegEx for searching: (?<=\w)\R(?!\R). Replace with empty Text. This will remove any line break preceded by a word character and not followed by another line break. You may also try \S (non-space-characters) for \w.

          1 Reply Last reply Reply Quote 0
          • Vasile CarausV Offline
            Vasile Caraus
            last edited by

            Search:
            \s+(.*?)

            Replace with:
            (Leave one Space)

            Or another solution:

            Search:
            \R
            Replace by:
            (Leave one space)

            1 Reply Last reply Reply Quote 0

            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

            With your input, this post could be even better 💗

            Register Login
            • First post
              Last post
            The Community of users of the Notepad++ text editor.
            Powered by NodeBB | Contributors