<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Help with mass edit]]></title><description><![CDATA[<p dir="auto">Can someone please provide me instructions how to mass edit something I have a column in excel which has LastName, FirstName. How do I mass edit muitple lines removing “LastName,” out of it?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19900/help-with-mass-edit</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 17:51:20 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19900.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 24 Aug 2020 21:10:02 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Help with mass edit on Mon, 24 Aug 2020 23:00:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rob-puleo" aria-label="Profile: Rob-Puleo">@<bdi>Rob-Puleo</bdi></a> I know it’s a notepad++ forum and you provided the steps to export to CSV to use Notepad++. That is what I was looking for and thank you for your help!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/57072</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/57072</guid><dc:creator><![CDATA[Rob Puleo]]></dc:creator><pubDate>Mon, 24 Aug 2020 23:00:46 GMT</pubDate></item><item><title><![CDATA[Reply to Help with mass edit on Mon, 24 Aug 2020 21:37:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rob-puleo" aria-label="Profile: Rob-Puleo">@<bdi>Rob-Puleo</bdi></a> ,</p>
<p dir="auto">If you are asking how to edit an Excel spreadsheet in the Excel application, you’re asking in the wrong place: this is a forum for the Notepad++ text editor.</p>
<p dir="auto">If you mean you exported a CSV from Excel and are editing the text of the CSV in Notepad++, then it should be reasonably easy with a regular expression-based search/replace function.</p>
<p dir="auto">How exactly that regex will look is determined by what your data <em>really</em> looks like.  Saying “column” for a spreadsheet data column is meaningless in Notepad++, because it’s a text-editor.</p>
<p dir="auto">For example, if your CSV looked like this:</p>
<pre><code>LastName, FirstName, Other Info ...
Jones, Peter, SuperHelper ...
Puleo, Rob, QuestionAsker ...
Doe, John, FakePerson ...
</code></pre>
<p dir="auto">I could use a Replace entry like:</p>
<ul>
<li>FIND = <code>(?-s)^.*?,\h*(.*)$</code></li>
<li>REPLACE = <code>$1</code></li>
<li>Search Mode = Regular Expression</li>
<li><strong>Replace All</strong></li>
</ul>
<p dir="auto">to get</p>
<pre><code>FirstName, Other Info ...
Peter, SuperHelper ...
Rob, QuestionAsker ...
John, FakePerson ...
</code></pre>
<p dir="auto">But I am 90% confident that my first guess won’t work for you, because of your vague problem description.</p>
<p dir="auto">Please note: if you want a better answer than what I just gave, you are going to have to carefully read and understand the following paragraph, and follow its advice.  If you do not, you are not likely to get anything useful in answer to your question.</p>
<p dir="auto">-—</p>
<p dir="auto"><em>Do you want regex search/replace help?  Then please be patient and polite, show some effort, and be willing to learn; answer questions and requests for clarification that are made of you.  All example text should be marked as plain text using the <code>&lt;/&gt;</code> toolbar button or manual <a href="https://community.notepad-plus-plus.org/topic/14262/how-to-markdown-code-on-this-forum/4">Markdown syntax</a>. Screenshots can be pasted from the clipbpard to your post using <code>Ctrl+V</code> to show graphical items, but any text should be included as literal text in your post so we can easily copy/paste your data. Show the data you have <strong>and</strong> the text you want to get from that data; include examples of things that <strong>should match</strong> and be transformed, <strong>and</strong> things that <strong>don’t match</strong> and should be left alone; show <strong>edge cases</strong> and make sure you examples are as <strong>varied</strong> as your real data.  Show the regex you already tried, <strong>and why</strong> you thought it should work; tell us what’s wrong with what you <strong>do</strong> get… Read the official <a href="https://npp-user-manual.org/docs/searching/#regular-expressions" rel="nofollow ugc">NPP Searching / Regex docs</a> and the forum’s <a href="https://community.notepad-plus-plus.org/topic/15765/faq-desk-where-to-find-regex-documentation">Regular Expression FAQ</a>. If you follow these guidelines, you’re much more likely to get helpful replies that solve your problem in the shortest number of tries.</em></p>
]]></description><link>https://community.notepad-plus-plus.org/post/57069</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/57069</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Mon, 24 Aug 2020 21:37:23 GMT</pubDate></item><item><title><![CDATA[Reply to Help with mass edit on Mon, 24 Aug 2020 21:39:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rob-puleo" aria-label="Profile: Rob-Puleo">@<bdi>Rob-Puleo</bdi></a> said in <a href="/post/57067">Help with mass edit</a>:</p>
<blockquote>
<p dir="auto">I have a column in excel</p>
</blockquote>
<p dir="auto">You do realise this is a forum for Notepad++??!!</p>
<p dir="auto">If you were to have the file in a CSV format (a common import/export file type that Excel uses) then Notepad++ should be able to “mass edit” it if there was enough structure to the various fields.</p>
<p dir="auto">You would need to create the CSV file and then represent part of it in this forum so we can see what’s needed. Then someone could create a regular expression to help you with the mass edit. Once edited in Notepad++ you would then need to import back into Excel.</p>
<p dir="auto">When posting examples. insert them into the window where you are typing the post, then after highlighting them use the <code>&lt;/&gt;</code> button you see immediately above the window. This will create a black box around the example text which protects it from the posting engine possibly altering the text.</p>
<p dir="auto">Alternatively you could perform the edit entirely within Excel, but that isn’t something this forum will help you with.</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/57068</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/57068</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Mon, 24 Aug 2020 21:39:17 GMT</pubDate></item></channel></rss>