help to delete part of line
-
@cisco779k said in help to delete part of line:
bookmark only on even lines of a list?
I’m not on a PC as it’s late here, but here is a possible solution which is achievable for someone with limited regex experience.
As you say a list, that presumes it is part of a file rather than all lines, although my idea works for both.
- Select the lines if some of the file or put cursor in first position of file if all lines.
- Use the column editor to insert numbers, starting with 1, increase by 1, and set repeat to 1 (might need to be 2 , I haven’t used this option). No need to have leading zeroes but we do want each number listed twice.
- Create a regex which looks at a number and also the one on the next line. If both the same then delete the one on the odd line, which is most likely the first one.
- Once every 2nd number removed, use the bookmark feature to mark the (even) lines which have a number at the start.
- Remove the numbers at the start of the line.
Terry
-
Hi, @cisco779k, @astrosofista, @alan-kilborn, @peterjones, @terry-r and All,
EDIT : In this post, I’m answering, specifically, to the @cisco779k’s question : how to delete even lines in a list?
Ah ! Interesting problem ! Here is a nice regex solution :
SEARCH
(?-s)(.*\R).*\R?
REPLACE
\1
IMPORTANT :
-
The current line, even empty, becomes, by default, the virtual line
1
, whatever the cursor location. So :-
This virtual line
1
is kept -
The virtual line
2
is deleted -
The virtual line
3
is kept
-
and so on…
-
By default, the regex S/R processes all lines till the very end of current file
-
If you want to restrict to a specific range of lines, simply use the
In selection
option of the Replace dialog -
Beware to not perform this regex S/R, using the
Find in Files
search tab or using theReplace in All Opened Documents
button ;-) -
True empty lines are considered as valid lines, too !
-
You may record this regex S/R as a macro
Test this regex S/R against that list of features and bug-fixes of the
v7.9.1
change.log file !1. Fix NUL file-corruption bug after Windows shutdown brutally (Fix #6133). 2. Fix inaccurate URL detection by replacing a new URL parser (Fix #3912, #3353, #4643, #5029, #6155, #7791, #8634) 3. Fix RegEx look behind operations and \A and and \b and \z (Fix #713, #1870, #2216, #2360, #9004, #4855). 4. Split functionList.xml into multifile in "functionList" Folder (Implement #4896). 5. Make tray icon work again in administrator mode (Fix #8528). 6. Fix dialogs & floating dockable panels don't minimize to system tray issue (Fix #9044, #8928). 7. Add alternative icon set for tab bar (Implement #8068). 8. Add ability to remove any duplicate lines in a document, keeping the first occurrence (Fix #8965). 9. Fix incorrect icon for monitoring status in Document list panel and in Document switcher (Fix #8783). 10. Add copy marked text & styled text to clipboard commands to menu (Implement #8943, #6095). 11. Fix find-all-open-docs not finding all matches in ANSI files (Fix #8901). 12. Display long lines better in Find-result panel by increasing its max length to 2048 (Fix #7723). 13. Fix double clicking on find result line not working (Fix #9009, #8525). 14. Fix Find-result rclick-Copy incomplete data bug (Fix #8801). 15. Add case insensitive lines sorting (Implement #4479). 16. Add "Open Containing Folder as Workspace" command in main menu and in context menu of tabs (Implement #3028). 17. Enhance Sel info of status bar (Fix #8524). 18. Add new option for save type of normal text files in Save dialog (Fix #8866). 19. Fix file path truncated issue in save confirmation dialog (Fix #8812). 20. Fix auto-Indent not working for PowerShell (Fix #9049). 21. Allow setting of background color for bookmark margin (Fix #8833). 22. Fix smart-highlighting not applying to cloned view (Fix #7910). 23. Fix smart highlight issue related to EOF (Fix #8908). 24. Fix closing file in 2nd view not removed from Doc Switcher (Fix #8800). 25. Add Delete keystroke to remove selected root from Folder as Workspace (Fix #8960). 26. Add TAB keystroke in Function List to switch between search field and list (Fix 8665). 27. Add ESC keystroke in Function List to switch to edit window (Fix #8886). 28. Add ESC keystroke to close Search Results Window (Implement #2946). 29. Fix data-prefixed attributes are not recognized in HTML (Fix #6200).
Best Regards,
guy038
-
-
@cisco779k said in help to delete part of line:
how can i put a bookmark only on even lines of a list?
I would do it this way:
This will put red marking on the text for the first character in even lines. If you don’t like that, untick Bookmark line and press the Clear all marks button.
can i put a bookmark only on specific ranges of lines?
Yes, use In selection checkbox rather than Wrap around for this. However, note that the notion of “even” will be from the point where you start the selection, NOT the absolute line numbering.
-
@guy038 said in help to delete part of line:
SEARCH
(?-s)(.*\R).*\R?
Guy, maybe you should edit your post above to say that THIS regex solves THIS problem requested by the OP:
how to delete even lines in a list?
Because the OP asked for 3 things in one posting, it is (slightly) confusing which one you are addressing.
-
@Terry-R
thank you for your support, but my problem persists at point 3 of your help (create a specific regex)…@guy038
thank you for your regex. wonderfull, like all your regex!@Alan-Kilborn
your contribution is also very interesting. something that can also be useful on other occasions and not only for this specific case.
thank you for your useful information.so, people like you who know a lot about np++ help someone like me understand many aspects still unclear about this wonderful (and complex) program.
A DUTIFUL AND HEARTFELT THANKS TO ALL THOSE WHO HAVE CONTRIBUTED TO THIS LONG POST (in the hope that it can also help other users who, like me, do not have all your knowledge about it).