<?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[Change Upper to Lower Case only at the beginning of each line]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">I want to put words that begin with a capital letter in lower case, and this only applies to the beginning of each sentence, the rest of the sentence must remain intact (Respect the capital letter):</p>
<p dir="auto">Example text:</p>
<p dir="auto">A video game developed by Rockstar bla bla bla. (Rockstar must remain intact)</p>
<p dir="auto">After its release, the game is published on Android bla bla bla. (Android must remain intact)</p>
<p dir="auto">The script is set in New York City, bla bla bla bla. (New York City must remain intact)</p>
<p dir="auto">Make it like this (The change is made only at the beginning of each sentence) :</p>
<p dir="auto">a video game developed by Rockstar bla bla bla.  (Rockstar must remain intact)</p>
<p dir="auto">after its release, the game is published on Android bla bla bla.  (Android must remain intact)</p>
<p dir="auto">the script takes place in New York City, bla bla bla bla. (New York City must remain intact)</p>
<p dir="auto">Is it possible with Notepad++ ?</p>
<p dir="auto">Thanks for your help.</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/18779/change-upper-to-lower-case-only-at-the-beginning-of-each-line</link><generator>RSS for Node</generator><lastBuildDate>Wed, 16 Sep 2026 12:34:19 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/18779.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 17 Jan 2020 09:51:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Change Upper to Lower Case only at the beginning of each line on Fri, 17 Jan 2020 20:43:21 GMT]]></title><description><![CDATA[<p dir="auto">I suppose the much simpler search for <code>(?-s)^.</code> and replace with <code>\L$0</code> also works fine…</p>
]]></description><link>https://community.notepad-plus-plus.org/post/49947</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/49947</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 17 Jan 2020 20:43:21 GMT</pubDate></item><item><title><![CDATA[Reply to Change Upper to Lower Case only at the beginning of each line on Fri, 17 Jan 2020 13:47:45 GMT]]></title><description><![CDATA[<p dir="auto">It works very well.</p>
<p dir="auto">Thank you so much for your help :)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/49938</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/49938</guid><dc:creator><![CDATA[Antoine Gautier]]></dc:creator><pubDate>Fri, 17 Jan 2020 13:47:45 GMT</pubDate></item><item><title><![CDATA[Reply to Change Upper to Lower Case only at the beginning of each line on Fri, 17 Jan 2020 13:38:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/antoine-gautier" aria-label="Profile: Antoine-Gautier">@<bdi>Antoine-Gautier</bdi></a></p>
<p dir="auto">Then I might be tempted to try to search for <code>(?-s)^(.)(.*)</code> and replace with <code>\L\1\E\2</code> with Regular Expression Search Mode selected.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/49937</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/49937</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 17 Jan 2020 13:38:33 GMT</pubDate></item><item><title><![CDATA[Reply to Change Upper to Lower Case only at the beginning of each line on Fri, 17 Jan 2020 13:30:54 GMT]]></title><description><![CDATA[<p dir="auto">Yes,  all lines in text starting at the left “margin” in npp</p>
]]></description><link>https://community.notepad-plus-plus.org/post/49936</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/49936</guid><dc:creator><![CDATA[Antoine Gautier]]></dc:creator><pubDate>Fri, 17 Jan 2020 13:30:54 GMT</pubDate></item><item><title><![CDATA[Reply to Change Upper to Lower Case only at the beginning of each line on Fri, 17 Jan 2020 12:44:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/antoine-gautier" aria-label="Profile: Antoine-Gautier">@<bdi>Antoine-Gautier</bdi></a></p>
<p dir="auto">Yes, if your examples are all lines starting at the left “margin” in Notepad++.  Otherwise probably not.  Please let us know which you have.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/49935</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/49935</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 17 Jan 2020 12:44:25 GMT</pubDate></item></channel></rss>