<?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[Removing all texts prior to a character in a string]]></title><description><![CDATA[<p dir="auto">Example:<br />
<a href="https://github.com/prometheus/procfs/blob/v0.6.0/LICENSE" rel="nofollow ugc">https://github.com/prometheus/procfs/blob/v0.6.0/LICENSE</a><br />
<a href="https://github.com/ryanuber/go-glob/blob/v1.0.0/LICENSE" rel="nofollow ugc">https://github.com/ryanuber/go-glob/blob/v1.0.0/LICENSE</a><br />
<a href="https://github.com/spf13/cast/blob/v1.5.0/LICENSE" rel="nofollow ugc">https://github.com/spf13/cast/blob/v1.5.0/LICENSE</a><br />
<a href="https://github.com/spf13/pflag/blob/v1.0.5/LICENSE" rel="nofollow ugc">https://github.com/spf13/pflag/blob/v1.0.5/LICENSE</a><br />
<a href="https://github.com/stretchr/objx/blob/v0.4.0/LICENSE" rel="nofollow ugc">https://github.com/stretchr/objx/blob/v0.4.0/LICENSE</a></p>
<p dir="auto">Remove everything up to the v in each line and also remove the v.</p>
<p dir="auto">I have been researching this all morning and cant figure it out.</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/23454/removing-all-texts-prior-to-a-character-in-a-string</link><generator>RSS for Node</generator><lastBuildDate>Sun, 10 May 2026 05:32:33 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/23454.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 08 Sep 2022 16:39:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Removing all texts prior to a character in a string on Thu, 08 Sep 2022 20:12:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jeffvb9" aria-label="Profile: jeffvb9">@<bdi>jeffvb9</bdi></a> said in <a href="/post/79608">Removing all texts prior to a character in a string</a>:</p>
<blockquote>
<p dir="auto">This doesnt seem to be working.<br />
Also we could look for /v and remove everything before and /v if possible.</p>
</blockquote>
<p dir="auto">That’s really just a restatement of the same problem statement from before, which you claim “isn’t working”.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/79616</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/79616</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 08 Sep 2022 20:12:36 GMT</pubDate></item><item><title><![CDATA[Reply to Removing all texts prior to a character in a string on Thu, 08 Sep 2022 19:25:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jeffvb9" aria-label="Profile: jeffvb9">@<bdi>jeffvb9</bdi></a> said in <a href="/post/79608">Removing all texts prior to a character in a string</a>:</p>
<blockquote>
<p dir="auto">This doesnt seem to be working.</p>
</blockquote>
<p dir="auto">How can this in any way be considered “not working” according to your description of your desired results?</p>
<blockquote>
<p dir="auto">Remove everything up to the v in each line and also remove the v.</p>
</blockquote>
<p dir="auto"><strong>before</strong></p>
<pre><code class="language-txt">https://github.com/prometheus/procfs/blob/v0.6.0/LICENSE
https://github.com/ryanuber/go-glob/blob/v1.0.0/LICENSE
https://github.com/spf13/cast/blob/v1.5.0/LICENSE
https://github.com/spf13/pflag/blob/v1.0.5/LICENSE
https://github.com/stretchr/objx/blob/v0.4.0/LICENSE
</code></pre>
<p dir="auto"><strong>after</strong></p>
<pre><code class="language-txt">0.6.0/LICENSE
1.0.0/LICENSE
1.5.0/LICENSE
1.0.5/LICENSE
0.4.0/LICENSE
</code></pre>
<p dir="auto"><img src="/assets/uploads/files/1662664774378-1a55c62b-20f8-459c-beac-4dd2494383cb-image.png" alt="1a55c62b-20f8-459c-beac-4dd2494383cb-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Please note, if you had used the <a href="https://community.notepad-plus-plus.org/topic/22022/faq-desk-template-for-search-replace-questions">Search/Replace Template</a>, there would have been no ambiguity in your desires.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/79610</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/79610</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 08 Sep 2022 19:25:24 GMT</pubDate></item><item><title><![CDATA[Reply to Removing all texts prior to a character in a string on Thu, 08 Sep 2022 19:07:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a> said in <a href="/post/79603">Removing all texts prior to a character in a string</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jeffvb9" aria-label="Profile: jeffvb9">@<bdi>jeffvb9</bdi></a></p>
<p dir="auto">You need to be very careful with this, because <code>v</code> could in theory appear earlier in the URL than the <code>v</code> you are (I believe) referring to.</p>
<p dir="auto">Find: <code>(?-is)^.*?/v</code><br />
Search mode: Regular expression</p>
<p dir="auto">Learn more about regular expressions by following the advice <a href="https://community.notepad-plus-plus.org/topic/15765/faq-desk-where-to-find-regular-expressions-regex-documentation/1">HERE</a>.</p>
</blockquote>
<p dir="auto">This doesnt seem to be working.  Also we could look for /v and remove everything before and /v if possible.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/79608</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/79608</guid><dc:creator><![CDATA[jeffvb9]]></dc:creator><pubDate>Thu, 08 Sep 2022 19:07:30 GMT</pubDate></item><item><title><![CDATA[Reply to Removing all texts prior to a character in a string on Thu, 08 Sep 2022 17:05:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jeffvb9" aria-label="Profile: jeffvb9">@<bdi>jeffvb9</bdi></a></p>
<p dir="auto">You need to be very careful with this, because <code>v</code> could in theory appear earlier in the URL than the <code>v</code> you are (I believe) referring to.</p>
<p dir="auto">Find: <code>(?-is)^.*?/v</code><br />
Search mode: Regular expression</p>
<p dir="auto">Learn more about regular expressions by following the advice <a href="https://community.notepad-plus-plus.org/topic/15765/faq-desk-where-to-find-regular-expressions-regex-documentation/1">HERE</a>.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/79603</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/79603</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 08 Sep 2022 17:05:43 GMT</pubDate></item></channel></rss>