Edit form of notepad++ "find all in current document" window [closed] - replace
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Every morning at work I have to do the following: Look for entries in a simple text file that contain a specified substring, then copy those entries in a .doc template which I then have to fax to a client. The problem is that notepad++, the program with which i open those files, has an otherwise very convenient feature for this (find all in current document), alas, it also adds the "line XYZ::" information at the start of every entry, which I then have to erase manually from the .doc template. Even though this has yet to happen, nothing prohibits those entries from reaching the hundreds, and then I will be stuck for hours and hours just hitting "backspace", "shift" and the arrow keys. Unacceptable.
Wordpad, on the other hand, does not have a massive "find" option akin to notepad++'s "find all in current document". Notepad doesn't have this either and MS Word thinks it is prudent to format search results in boxes, making it impossible for me to select them all, copy and paste them.
Is there any way to customize the output of "find all in current document" in order for the "line XYZ::" message to not appear? Mind you, I would look for a faster solution using a script, but I come from Linux, and only know how to accomplish basic bash/awk tasks.
Thank you for your time and interest.
Before pasting the search results into the word doc, you could do a "Find and Replace" using regex matching with this pattern;
\s+Line \d+:\s+
Just replace matches with an empty string - that will remove the line number prefixes from every line.
What you could do is to copy / paste the search results into a new Notepad++ document. Then you do a search and replace with regular expressions. You search for something like:
\s*Line \d+:\s
and replace with nothing. Don't forget to check the regular expression option.
There is a manual approach which i used to do before learning about regex, and that is in notepad++ you can do column select by leaving your cursor at the beginning of the document, scroll to the end of the document, hold Alt+Shift while you click on the column position you'd like to eliminate.
You'll be able to select all the line number prefixes this way, after which you just press delete.
Related
Regex to extract all strings from source code used when calling a function
We have an old, grown project with thousands of php files and need to clean it up. Throughout the whole project we do have a lot of function calls similar to: trans('somestring1'); trans("SomeString2"); trans('more_string',$somevar); trans("anotherstring4",$somevar); trans($tx_key); trans($anotherKey,$somevar); All of those are embedded into the code and represent translation keys. I would like to find a way to extract all "translation keys" in all occurrences. The PHP project is in VS Code, so a RegEx Search would be helpful to list the results. Or I could search through the project with any other tool you would recommend However I would also need to "export" just the strings to a textfile or similar. The ideal result would be: somestring1 SomeString2 more_string anotherstring4 $tx_key $anotherKey As a bonus - if someone knows, how I could get the above list including filename where the result has been found - that would be really fantastic! Any help would be greatly appreciated! Update: The RegEx I came up with: /(trans)+\([^\)]*\)(\.[^\)]*\))?/gim list the full occurrence - How can I just get the first part of the result (between Single Quotes OR between Double Quotes OR beginning with $) See here: regexr.com/548d4
Here are some steps to get exactly what you want. Using this you can do a find and replace on your search results! So you could do sequential regex find/replaces in the right circumstances. The replace can be just within the search results editor and not affect the underlying files at all - which is what you want. You can also have the replace action actually edit the underlying files if you wish. [Hint: This technique can also make doing a find item a / replace with b in files that contain term c much easier to do.] (1) Open a new search editor: Ctrl+Shift+P (That command is currently unbound to a keybinding.) (2) Paste this regex into the Search input box (with the regex option .* selected): `(.*?)(\btrans\(['"]?)([^,'")]+)(.*)` - a relatively simple regex regex101 demo See my other answer for a regex to work with up to 6 entries per line: (\s*\d+:\s)?((.*?)(\btrans\(['"]?)([^,'")]*)((.*?)(\btrans\(['"]?)([^,'")]*))?((.*?)(\btrans\(['"]?)([^,'")]*))?((.*?)(\btrans\(['"]?)([^,'")]*))?((.*?)(\btrans\(['"]?)([^,'")]*))?((.*?)(\btrans\(['"]?)([^,'")]*))?)(.*) (3) You will get a list of files with the search results. Now open a Find widget Shift+F in this Search editor. (4) Put the same regex into that Find input. Regex option selected. Put $3 into the Replace field. This only replaces in this Search editor - not the original files (although that can be done if you want it in some case). Replace All. If using the 1-6 version regex, replace with: $1$5 $9 $13 $17 $21 $25 (5) Voila. You can now save this Search Editor as a file.
The first answer works for one desired capture per line as in the original question. But that relatively simple regex won't work if there are two or more per line. The regex below works for up to 6 entries per line, like trans('somestring1'); stuff trans("SomeString2"); some content trans("SomeString2a");more stuff [repeat, repeat] But it doesn't for 7+ - you'll need a regex guru for that. Here is the process again with a twist of using a snippet in the Search Editor instead of a Find/Replace. Using a snippet allows more control over the formatting of the final result. (1) Open a new search editor: Ctrl+Shift+P (That command is currently unbound to a keybinding.) (2) Paste this regex into the Search input box (with the regex option .* selected): `((.*?)(\btrans\(['"]?)([^,'")]*)((.*?)(\btrans\(['"]?)([^,'")]*))?((.*?)(\btrans\(['"]?)([^,'")]*))?((.*?)(\btrans\(['"]?)([^,'")]*))?((.*?)(\btrans\(['"]?)([^,'")]*))?((.*?)(\btrans\(['"]?)([^,'")]*))?)(.*)` regex101 demo (3) You will get a list of files with the search results. Now select all your results individually with Ctrl+Shift+L. (4) Trigger this keybinding: { "key": "alt+i", // whatever keybinding you like "command": "editor.action.insertSnippet", "when": "editorTextFocus", "args": { "snippet": "${TM_SELECTED_TEXT/((.*?)(\\btrans\\([\\'\\\"]?)([^,\\'\\\")]*)((.*?)(\\btrans\\([\\'\\\"]?)([^,\\'\\\")]*))?((.*?)(\\btrans\\([\\'\\\"]?)([^,\\'\\\")]*))?((.*?)(\\btrans\\([\\'\\\"]?)([^,\\'\\\")]*))?((.*?)(\\btrans\\([\\'\\\"]?)([^,\\'\\\")]*))?((.*?)(\\btrans\\([\\'\\\"]?)([^,\\'\\\")]*))?)(.*)/$4${8:+\n }$8${12:+\n }$12${16:+\n }$16${20:+\n }$20${24:+\n }$24/g}" } }, That snippet will be applied to each selection in your search result. This part ${8:+\n } is a conditional which adds a newline and some spaces if there is a capture group 8 - which would be a second trans(...) on a line. Demo: (unfortunately, it doesn't properly show the Ctrl+Shift+L selecting all lines individually or the Alt+i snippet trigger)
Search/replace in block selection in Notepad++
Is there a way to limit search/replace only to a columnar block selection in Notepad++? Here is what I am trying to do: I am bulk-editing metadata extracted from large numbers of photos. The metadata comes to me as a csv file with no quotes around fields in header line and no quotes around first field in each succeeding line. I edit this file in Open Office calc which exports with quotes around all fields. I can easily edit header row but the problem comes in stripping quotes from only first field in successive lines. I can use notepad in columnar mode but, after selecting the first column, the 'search only in selection' option box is greyed out. I can do this by hand but it means lots of hand-work and increased chance of error.
I know, this probably won't help you any more, but I just had the same problem and stumbled across this question. I found moving the block in question to a new file and performing the find/replace there works quite decently. When moving the block back, be sure to select it in block mode (see this question).
No. Another editor may have this feature.
sort of a late reply but... I had the same problem when I moved to a new machine with Notepad++ installed. Previously, I was using a text editor called Boxer that had this feature, which I found invaluable. Its not free-ware however.
You may not be able to Search/Replace within a columnar selection, but you can easily carry out your task within Notepad++. Use Find and Replace feature, with the Regular Expressions box checked. If you want to remove quotes only from a target column, use the following regular expression in the Find field: (^([^,]*,){i})"([^,\n\r]*)"(.*$) Replace i with the position of the target column minus 1. (i.e.- Us 2 if you want quotes around the third column, 0 for the first column, etc) In the Replace field use: \1\3\4 Clicking "Replace All" will strip quotes from the target column. If you want to blow away all quotes surrounding each element in your csv without prejudice, use the following regular expression in the Find field: ((?<=,)|(?<=^))"(.*?)"((?=$|,)) In the Replace field use: \1\2\3 Clicking Replace All will strip quotes form the columns. Example Since you didn't provide an example csv file, I'll walk through my own working example. Below is my csv: "0","1","2","3","4","5","6","7","8","9" "10","11","12","13","14","15","16","17","18","19" "20","21","22","23","24","25","26","27","28","29" "30","31","32","33","34","35","36","37","38","39" "40","41","42","43","44","45","46","47","48","49" "50","51","52","53","54","55","56","57","58","59" "60","61","62","63","64","65","66","67","68","69" "70","71","72","73","74","75","76","77","78","79" "80","81","82","83","84","85","86","87","88","89" "90","91","92","93","94","95","96","97","98","99" "100","101","102","103","104","105","106","107","108","109" "110","111","112","113","114","115","116","117","118","119" "120","121","122","123","124","125","126","127","128","129" "130","131","132","133","134","135","136","137","138","139" "140","141","142","143","144","145","146","147","148","149" "150","151","152","153","154","155","156","157","158","159" "160","161","162","163","164","165","166","167","168","169" "170","171","172","173","174","175","176","177","178","179" "180","181","182","183","184","185","186","187","188","189" "190","191","192","193","194","195","196","197","198","199" If I wanted to remove quotes from the second column, I would use the below Find and Replace fields (^([^,]*,){1})"([^,\n\r]*)"(.*$) \1"\3"\4 Clicking Replace All yields the below result: "0",1,"2","3","4","5","6","7","8","9" "10",11,"12","13","14","15","16","17","18","19" "20",21,"22","23","24","25","26","27","28","29" "30",31,"32","33","34","35","36","37","38","39" "40",41,"42","43","44","45","46","47","48","49" "50",51,"52","53","54","55","56","57","58","59" "60",61,"62","63","64","65","66","67","68","69" "70",71,"72","73","74","75","76","77","78","79" "80",81,"82","83","84","85","86","87","88","89" "90",91,"92","93","94","95","96","97","98","99" "100",101,"102","103","104","105","106","107","108","109" "110",111,"112","113","114","115","116","117","118","119" "120",121,"122","123","124","125","126","127","128","129" "130",131,"132","133","134","135","136","137","138","139" "140",141,"142","143","144","145","146","147","148","149" "150",151,"152","153","154","155","156","157","158","159" "160",161,"162","163","164","165","166","167","168","169" "170",171,"172","173","174","175","176","177","178","179" "180",181,"182","183","184","185","186","187","188","189" "190",191,"192","193","194","195","196","197","198","199"
My search on internet, to to see weather notepad++ suports this; brought me here. I have used TextPad and confirm that it supports find-and-replace within column selected block. Also TextPad is free for personal use.
How to replace in a particular region in many files in Perl? [closed]
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 8 years ago. Improve this question I am working in many xml files. And I want to replace some particular content only in a specific region of all files. For example: the files may have many of the following contents: <h2>Content comes here</h2> Now I want to replace a word only in the above <h2>...</h2> region in all files. Please advice. Thanks in advance.
General text replacement in Perl is usually done using regexes and the s/// operator. However it is considered very unadvisable to try to interpret the structure of an XML file using only regexes. You should use a module which parses XML. XML::Simple will allow you to load the whole document as a Perl object (using hashrefs for attributes and subtags, etc.) and you can then traverse it and do the replacement you want to. However you then have to write that structure back as you choose. XML::Parser is a good bet in my opinion. It is conceptually a bit more tricky, but is designed to do exactly the sort of thing you want. You set up handler functions which get called every time the parser finds the start or end of a tag. In your case all these have to do is output the tag and its contents, except when it's a h2 tag, in which case you do some extra processing. There are also some DOM-oriented parsers which you might want to use if you are used to doing stuff like this in JavaScript or some other DOM-based XML library. Last and for the sake of completeness, you can probably write a (very short) XSLT file which will do this transformation (not an expert, so not sure exactly how) and apply it using XML::XSLT, basically in one line.
internal code-completion in vim
There's a completion type that isn't listed in the vim help files (notably: insert.txt), but which I instinctively feel the need for rather often. Let's say I have the words "Awesome" and "SuperCrazyAwesome" in my file. I find an instance of Awesome that should really be SuperCrazyAwesome, so I hop to the beginning of the word, enter insert mode, and then must type "SuperCrazy". I feel I should be able to type "S", creating "SCrazy", and then simply hit a completion hotkey or two to have it find what's to the left of the cursor ("S"), what's to the right ("Crazy"), regex this against all words in the file ("/S\w*Crazy/"), and provide me with a completion popup menu of choices, or just do the replace if there's only one match. I'd like to use the actual completion system for this. There exists a "user defined" completion which uses a function, and has a good example in the helps for replacing from a given list. However, I can't seem to track down many particulars that I'd need to make this happen, including: How do I get a list of all words in the file from a vim function? Can I list words from all buffers (with filenames), as vim's complete does? How do I, in insert mode, get the text in the word before/after the cursor? Can completion replace the entire word, and not just up to the cursor? I've been at this for a couple of hours now. I keep hitting dead ends, like this one, which introduced me to \%# for matching with the cursor position, which doesn't seem to work for me. For instance, a search for \w*\%# returns only the first character of the word I'm on, regardless of where I'm in it. The \%# doesn't seem to anchor.
Although its not exactly following your desired method in the past I've written https://github.com/mjbrownie/swapit which might perform your task if you are looking for related keywords. It would fall down in this scenario if you have hundreds of matches. It's mainly useful for 2-10 possible sequenced matches. You would define a list :SwapList awesomes Awesome MoreAwesome SuperCrazyAwesome FullyCompletelyAwesome UnbelievablyAwesome and move through the matches with the incrementor decrementor keys (c+a) (c+x) There are also a few other cycling type plugins like swap words that I know of on vim.org and github. The advantage here is you don't have to group words together with regex.
I wrote something like that years ago when working with 3rd party libraries with rather long CamelCasePrefixes in every function different for each component. But it was in Before Git Hub era and I considered it a lost jewel, but search engine says I am not a complete ass and posted it to Vim wiki. Here it is: http://vim.wikia.com/wiki/Custom_keyword_completion Just do not ask me what 'MKw' means. No idea. This will need some adaptation to your needs, as it is looking up only the word up to the cursor, but the idea is there. It works for current buffer only. Iterating through all buffers would be sluggish as it is not creating any index. For those purposes I would go with external grep.
Use cases for regular expression find/replace
I recently discussed editors with a co-worker. He uses one of the less popular editors and I use another (I won't say which ones since it's not relevant and I want to avoid an editor flame war). I was saying that I didn't like his editor as much because it doesn't let you do find/replace with regular expressions. He said he's never wanted to do that, which was surprising since it's something I find myself doing all the time. However, off the top of my head I wasn't able to come up with more than one or two examples. Can anyone here offer some examples of times when they've found regex find/replace useful in their editor? Here's what I've been able to come up with since then as examples of things that I've actually had to do: Strip the beginning of a line off of every line in a file that looks like: Line 25634 : Line 632157 : Taking a few dozen files with a standard header which is slightly different for each file and stripping the first 19 lines from all of them all at once. Piping the result of a MySQL select statement into a text file, then removing all of the formatting junk and reformatting it as a Python dictionary for use in a simple script. In a CSV file with no escaped commas, replace the first character of the 8th column of each row with a capital A. Given a bunch of GDB stack traces with lines like #3 0x080a6d61 in _mvl_set_req_done (req=0x82624a4, result=27158) at ../../mvl/src/mvl_serv.c:850 strip out everything from each line except the function names. Does anyone else have any real-life examples? The next time this comes up, I'd like to be more prepared to list good examples of why this feature is useful.
Just last week, I used regex find/replace to convert a CSV file to an XML file. Simple enough to do really, just chop up each field (luckily it didn't have any escaped commas) and push it back out with the appropriate tags in place of the commas.
Regex make it easy to replace whole words using word boundaries. (\b\w+\b) So you can replace unwanted words in your file without disturbing words like Scunthorpe
Yesterday I took a create table statement I made for an Oracle table and converted the fields to setString() method calls using JDBC and PreparedStatements. The table's field names were mapped to my class properties, so regex search and replace was the perfect fit. Create Table text: ... field_1 VARCHAR2(100) NULL, field_2 VARCHAR2(10) NULL, field_3 NUMBER(8) NULL, field_4 VARCHAR2(100) NULL, .... My Regex Search: /([a-z_])+ .*?,?/ My Replacement: pstmt.setString(1, \1); The result: ... pstmt.setString(1, field_1); pstmt.setString(1, field_2); pstmt.setString(1, field_3); pstmt.setString(1, field_4); .... I then went through and manually set the position int for each call and changed the method to setInt() (and others) where necessary, but that worked handy for me. I actually used it three or four times for similar field to method call conversions.
I like to use regexps to reformat lists of items like this: int item1 double item2 to public void item1(int item1){ } public void item2(double item2){ } This can be a big time saver.
I use it all the time when someone sends me a list of patient visit numbers in a column (say 100-200) and I need them in a '0000000444','000000004445' format. works wonders for me! I also use it to pull out email addresses in an email. I send out group emails often and all the bounced returns come back in one email. So, I regex to pull them all out and then drop them into a string var to remove from the database. I even wrote a little dialog prog to apply regex to my clipboard. It grabs the contents applies the regex and then loads it back into the clipboard.
One thing I use it for in web development all the time is stripping some text of its HTML tags. This might need to be done to sanitize user input for security, or for displaying a preview of a news article. For example, if you have an article with lots of HTML tags for formatting, you can't just do LEFT(article_text,100) + '...' (plus a "read more" link) and render that on a page at the risk of breaking the page by splitting apart an HTML tag. Also, I've had to strip img tags in database records that link to images that no longer exist. And let's not forget web form validation. If you want to make a user has entered a correct email address (syntactically speaking) into a web form this is about the only way of checking it thoroughly.
I've just pasted a long character sequence into a string literal, and now I want to break it up into a concatenation of shorter string literals so it doesn't wrap. I also want it to be readable, so I want to break only after spaces. I select the whole string (minus the quotation marks) and do an in-selection-only replace-all with this regex: /.{20,60} / ...and this replacement: /$0"ΒΆ + "/ ...where the pilcrow is an actual newline, and the number of spaces varies from one incident to the next. Result: String s = "I recently discussed editors with a co-worker. He uses one " + "of the less popular editors and I use another (I won't say " + "which ones since it's not relevant and I want to avoid an " + "editor flame war). I was saying that I didn't like his " + "editor as much because it doesn't let you do find/replace " + "with regular expressions.";
The first thing I do with any editor is try to figure out it's Regex oddities. I use it all the time. Nothing really crazy, but it's handy when you've got to copy/paste stuff between different types of text - SQL <-> PHP is the one I do most often - and you don't want to fart around making the same change 500 times.
Regex is very handy any time I am trying to replace a value that spans multiple lines. Or when I want to replace a value with something that contains a line break. I also like that you can match things in a regular expression and not replace the full match using the $# syntax to output the portion of the match you want to maintain.
I agree with you on points 3, 4, and 5 but not necessarily points 1 and 2. In some cases 1 and 2 are easier to achieve using a anonymous keyboard macro. By this I mean doing the following: Position the cursor on the first line Start a keyboard macro recording Modify the first line Position the cursor on the next line Stop record. Now all that is needed to modify the next line is to repeat the macro. I could live with out support for regex but could not live without anonymous keyboard macros.