<?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[a newbie question about search]]></title><description><![CDATA[<p dir="auto">I never used this tool<br />
I have huge js file which contain all my tweets from Twitter<br />
Notepad++ opened it easily as text file<br />
I need to extract corresponding two lines with specific strings.<br />
I can search each one, but I need it as corresponding<br />
Is it possible?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/26210/a-newbie-question-about-search</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Jul 2026 09:28:42 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/26210.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 18 Oct 2024 04:00:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to a newbie question about search on Wed, 23 Oct 2024 13:17:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alen-mark" aria-label="Profile: Alen-Mark">@<bdi>Alen-Mark</bdi></a> ,</p>
<p dir="auto">Please note: this is the second time you’ve come to the forum and posted ultra-generic content that sounds vaguely on-topic: it is <em>highly</em> reminiscent of AI-generated phraseology.</p>
<p dir="auto">Please understand that posting AI-Generated content is expressly forbidden in this forum.  And if your posts continue to appear as if they are – whether or not they are – you are likely to get banned.  If you wish to avoid looking like (and getting banned as) AI, then I suggest you tailor your replies to the individual posts, rather than providing overly-generic responses that don’t take into account the context of the entire conversation.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97260</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97260</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Wed, 23 Oct 2024 13:17:27 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Wed, 23 Oct 2024 07:11:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/roni-segoly" aria-label="Profile: Roni-Segoly">@<bdi>Roni-Segoly</bdi></a><br />
Yes, it’s definitely possible to extract specific lines from your large JS file in Notepad++, and there are a couple of ways you can approach this:</p>
<p dir="auto">Using Regular Expressions (Regex): Notepad++ has a powerful “Find” feature that supports regular expressions, which can help you search for patterns in your file. If you know the structure of the lines containing the specific strings you want to extract, you can use a regex search to locate them together.</p>
<p dir="auto">Here’s how to use Regex in Notepad++:</p>
<p dir="auto">Press Ctrl + F to open the Find dialog.<br />
Go to the Find tab and select Regular expression in the search mode.<br />
Use a regex pattern to find the string you need along with its corresponding line. For example:<br />
markdown<br />
Copy code<br />
(YourFirstString.*\n.*YourSecondString)<br />
This will match the first line with YourFirstString and the line immediately after it with YourSecondString.</p>
<p dir="auto">Using a Script Plugin: If you’re dealing with more complex extractions or specific logic, you might want to install the PythonScript or NppExec plugin, which allows you to write and execute small scripts directly in Notepad++. You can write a script that reads the file line by line, checks for the matching strings, and extracts the corresponding lines as needed.</p>
<p dir="auto">These methods should help you extract the corresponding lines from your large JS file. If you have more details on the structure, I could help refine the search process further!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97246</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97246</guid><dc:creator><![CDATA[Alen Mark]]></dc:creator><pubDate>Wed, 23 Oct 2024 07:11:03 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 20:19:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mark-olson" aria-label="Profile: Mark-Olson">@<bdi>Mark-Olson</bdi></a> said:</p>
<blockquote>
<p dir="auto">Tweet JSON is extremely complex and deeply nested, with some fields appearing at different nesting depths. The created_at field, for example, appears in the root object, the retweeted_status child of the root object, and the user child of the root object. If the JSON file is printed out with no depth-based indentation, your regex has no way of differentiating between these created_at fields. The full_text field could also appear at different nesting depths.</p>
</blockquote>
<blockquote>
<p dir="auto">and blah blah blah…</p>
</blockquote>
<p dir="auto">I hope that’s for the benefit of the OP and not me, because I don’t care an iota about Tweet JSON or WTF the data is.  I sold my solution as simple-minded, it’s up to OP to decide if it works for him, or to keep pursuing some other solution.</p>
<p dir="auto">Know thy data…understand how you’re manipulating it – this is OP’s responsibility.  As is asking a full and complete question, with representative data fully shown.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97186</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97186</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 18 Oct 2024 20:19:23 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 18:14:00 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/97184">a newbie question about search</a>:</p>
<blockquote>
<p dir="auto">If the data is simple and well formed, it’s doable.<br />
That was the presumption I was proceeding upon with my first answer to OP.</p>
</blockquote>
<p dir="auto">Tweet JSON is extremely complex and deeply nested, with some fields appearing at different nesting depths. The <code>created_at</code> field, for example, appears in the root object, the <code>retweeted_status</code> child of the root object, and the <code>user</code> child of the root object. If the JSON file is printed out with no depth-based indentation, your regex has no way of differentiating between these <code>created_at</code> fields. The <code>full_text</code> field could also appear at different nesting depths.</p>
<p dir="auto">To expand, tweet JSON can have a structure that looks a little bit like this (only much, much worse):</p>
<pre><code>[
  {
    "Root1": {
      "bar": false,
      "quz": 1
    },
    "rOOt2": {
      "quz": 2,
      "bar": false
    },
    "ROOT3": [
      {
        "id": 1,
        "id_str": 2
      }
    ],
    "ROot4": [
        "id": -37,
        "id_str": 75
    ]
    "roOT5": "blah"
  }
]
</code></pre>
<p dir="auto">If you write a regex that searches for the <code>bar</code> field, you most likely won’t be able to tell whether its parent is <code>Root1</code> or <code>rOOt2</code>. A similar issue happens with the <code>id_str</code> and <code>id</code> keys.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97185</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97185</guid><dc:creator><![CDATA[Mark Olson]]></dc:creator><pubDate>Fri, 18 Oct 2024 18:14:00 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 17:33:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mark-olson" aria-label="Profile: Mark-Olson">@<bdi>Mark-Olson</bdi></a> said in <a href="/post/97181">a newbie question about search</a>:</p>
<blockquote>
<p dir="auto">Not in general.</p>
</blockquote>
<p dir="auto">Well, I guess it depends.<br />
Totally generally, then I agree with you.</p>
<p dir="auto">If the data is simple and well formed, it’s doable.<br />
That was the presumption I was proceeding upon with my first answer to OP.</p>
<p dir="auto">But, everyone encouraged OP to say more…to little avail.<br />
So, if the data was NOT simple and well formed, OP likely did not get what he wanted, at least from my  method.</p>
<p dir="auto">But OP seemed satisfied, so, let’s move on…</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97184</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97184</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 18 Oct 2024 17:33:35 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 15:31:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a> said in <a href="/post/97180">a newbie question about search</a>:</p>
<blockquote>
<p dir="auto">Very easy with regexes !</p>
</blockquote>
<p dir="auto"><a href="https://community.notepad-plus-plus.org/topic/25304/faq-parsing-and-editing-json-with-regex-is-a-bad-idea">Not in general.</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/97181</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97181</guid><dc:creator><![CDATA[Mark Olson]]></dc:creator><pubDate>Fri, 18 Oct 2024 15:31:48 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 15:16:57 GMT]]></title><description><![CDATA[<p dir="auto">Hi, <a class="plugin-mentions-user plugin-mentions-a" href="/user/roni-segoly" aria-label="Profile: roni-segoly">@<bdi>roni-segoly</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/mark-olson" aria-label="Profile: mark-olson">@<bdi>mark-olson</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">Very <strong>easy</strong> with regexes !</p>
<p dir="auto">So :</p>
<ul>
<li>
<p dir="auto">Move to your file tab, <strong>first</strong></p>
</li>
<li>
<p dir="auto">Open the <strong>Replace</strong> dialog ( <strong><code>Ctrl + H</code></strong> )</p>
</li>
<li>
<p dir="auto"><strong>Untick</strong> all <strong>box</strong> options</p>
</li>
<li>
<p dir="auto">SEARCH <strong><code>(?-is)^"created_at"\x20:\x20|\R"full_text"\x20:(.+),$</code></strong></p>
</li>
<li>
<p dir="auto">REPLACE <strong><code>?1\1</code></strong></p>
</li>
<li>
<p dir="auto"><strong>Check</strong> the <strong><code>Wrap around</code></strong> option</p>
</li>
<li>
<p dir="auto">Select the <strong><code>Regular expression</code></strong> search <strong>mode</strong></p>
</li>
<li>
<p dir="auto">Click, <strong>once</strong> only, on the <strong><code>Replace All</code></strong>  button</p>
</li>
</ul>
<p dir="auto">Voila !</p>
<p dir="auto">BR</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97180</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97180</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Fri, 18 Oct 2024 15:16:57 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 14:44:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/roni-segoly" aria-label="Profile: Roni-Segoly">@<bdi>Roni-Segoly</bdi></a>:</p>
<blockquote>
<p dir="auto">not everyone has Hebrew characters</p>
</blockquote>
<p dir="auto">They don’t?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97179</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97179</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 18 Oct 2024 14:44:38 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 14:46:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/roni-segoly" aria-label="Profile: Roni-Segoly">@<bdi>Roni-Segoly</bdi></a><br />
In the future, you should refer to JSON as JSON or <code>json</code>, not <code>js</code>. Calling it <code>js</code> is confusing to programmers like me, because <code>js</code> is generally used to refer to JavaScript, not JSON.</p>
<p dir="auto">JsonTools makes it easy to extract a few fields (like <code>full_text</code> and <code>created_at</code>) from each object in an array of objects, which is what your tweets appear to be.</p>
<ol>
<li>Open the JsonTools tree view for your file.</li>
<li>In the text box in the upper left-hand corner of the tree view, enter the query <code>@[:][created_at, full_text]</code>. This <a href="https://github.com/molsonkiko/JsonToolsNppPlugin/blob/main/docs/RemesPath.md" rel="nofollow ugc">RemesPath query</a> will iterate through the array of objects and extract the <code>created_at</code> and <code>full_text</code> fields from each object.</li>
<li>Click the <code>Submit query</code> button.</li>
<li>You can now look at the tree view and notice that the tree displays only the <code>full_text</code> and <code>created_at</code> field in each object.</li>
<li>Click the <code>Save query result</code> button.</li>
<li>The fields you wanted will now be in a new buffer, which you can save to a new file if desired.</li>
</ol>
<p dir="auto">JsonTools has a lot of other features, like a <a href="https://github.com/molsonkiko/JsonToolsNppPlugin/blob/main/docs/README.md#sort-form" rel="nofollow ugc">sort form</a> that can sort JSON arrays in a variety of different ways. I recommend reading the documentation; I put a lot of work into making it readable and thorough.</p>
<p dir="auto"><strong>EDIT:</strong> Don’t post a link to the file. If it’s really large, it will waste the resources of this forum. I know what tweet JSON looks like; I have a bunch of it on my own computer that I use as examples to test JsonTools.</p>
<p dir="auto"><strong>EDIT2:</strong> If you don’t know what I mean by “array” and “object”, you should read <a href="https://www.w3schools.com/js/js_json_intro.asp" rel="nofollow ugc">this introduction to JSON</a>. It is a bad idea to work with JSON without understanding it.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97178</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97178</guid><dc:creator><![CDATA[Mark Olson]]></dc:creator><pubDate>Fri, 18 Oct 2024 14:46:14 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 14:01:07 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>  I did print screen of section of the file as not everyone has Hebrew characters<br />
I need if possible to be without the labels and date and text in one line, separated by comma<br />
Like<br />
“Tue Oct 15 16:00:37 +0000 2024”, “@zamir_shatz יש גם רמב"פ”</p>
<p dir="auto"><img src="/assets/uploads/files/1729259846171-740f7dd0-aa70-4065-ab7f-23e3db7786a2-image.png" alt="740f7dd0-aa70-4065-ab7f-23e3db7786a2-image.png" class=" img-fluid img-markdown" /><br />
I cannot post the link to the file yet, need two reputations</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97177</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97177</guid><dc:creator><![CDATA[Roni Segoly]]></dc:creator><pubDate>Fri, 18 Oct 2024 14:01:07 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 11:33:09 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> Managed, cheers</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97173</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97173</guid><dc:creator><![CDATA[Roni Segoly]]></dc:creator><pubDate>Fri, 18 Oct 2024 11:33:09 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 11:51:37 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="/user/roni-segoly" aria-label="Profile: roni-segoly">@<bdi>roni-segoly</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/mark-olson" aria-label="Profile: mark-olson">@<bdi>mark-olson</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> and <strong>All</strong>,</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/roni-segoly" aria-label="Profile: roni-segoly">@<bdi>roni-segoly</bdi></a>, you did <strong>not</strong> provide enough text to guess which should be the <strong>right</strong> way to help you !</p>
<p dir="auto">Do you mean that, from this <em>INPUT</em> text :</p>
<pre><code class="language-diff">},
"display_text_range" : [
"0",
"24"
],
"favorite_count" : "1",
"in_reply_to_status_id_str" : "1846199292232339627",
"id_str" : "1846219638109086002",
"in_reply_to_user_id" : "4774540948",
"truncated" : false,
"retweet_count" : "0",
"id" : "1846219638109086002",
"in_reply_to_status_id" : "1846199292232339627",
"created_at" : "Tue Oct 15 16:00:37 +0000 2024",
"favorited" : false,
"full_text" : "@zamir_shatz יש גם רמב"פ",
"lang" : "iw",
"in_reply_to_screen_name" : "zamir_shatz",
"in_reply_to_user_id_str" : "4774540948"
</code></pre>
<p dir="auto">You are expecting this <em>OUTPUT</em> text, with the <strong>two</strong> lines, beginning with <strong><code>created_at</code></strong> or <strong><code>full_text</code></strong>, moved <strong>after</strong> the others ones ?</p>
<pre><code class="language-diff">},
"display_text_range" : [
"0",
"24"
],
"favorite_count" : "1",
"in_reply_to_status_id_str" : "1846199292232339627",
"id_str" : "1846219638109086002",
"in_reply_to_user_id" : "4774540948",
"truncated" : false,
"retweet_count" : "0",
"id" : "1846219638109086002",
"in_reply_to_status_id" : "1846199292232339627",
"favorited" : false,
"lang" : "iw",
"in_reply_to_screen_name" : "zamir_shatz",
"in_reply_to_user_id_str" : "4774540948"
"created_at" : "Tue Oct 15 16:00:37 +0000 2024",
"full_text" : "@zamir_shatz יש גם רמב"פ",
</code></pre>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97172</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97172</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Fri, 18 Oct 2024 11:51:37 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 11:29:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/roni-segoly" aria-label="Profile: Roni-Segoly">@<bdi>Roni-Segoly</bdi></a></p>
<p dir="auto">Overall, your posting is <strong>vague</strong>.  There’s a <a href="https://community.notepad-plus-plus.org/topic/22022/faq-template-for-search-replace-questions">FAQ</a> about properly posting such questions.</p>
<p dir="auto">Likely your data is actually:</p>
<pre><code class="language-txt">},
"display_text_range" : [
"0",
"24"
],
"favorite_count" : "1",
"in_reply_to_status_id_str" : "1846199292232339627",
"id_str" : "1846219638109086002",
"in_reply_to_user_id" : "4774540948",
"truncated" : false,
"retweet_count" : "0",
"id" : "1846219638109086002",
"in_reply_to_status_id" : "1846199292232339627",
"created_at" : "Tue Oct 15 16:00:37 +0000 2024",
"favorited" : false,
"full_text" : "@zamir_shatz יש גם רמב"פ",
"lang" : "iw",
"in_reply_to_screen_name" : "zamir_shatz",
"in_reply_to_user_id_str" : "4774540948"
</code></pre>
<p dir="auto">If I were doing your task, I might start this way:</p>
<ul>
<li>Invoke <em>Mark</em> with Ctrl+m</li>
<li>In <em>Find what</em> put <code>"created_at"|"full_text"</code></li>
<li>Checkmark: <em>Bookmark line</em>, <em>Match case</em>, <em>Wrap around</em> and <em>Regular expression</em></li>
<li>Press <em>Mark all</em></li>
<li>On the <em>Search</em> menu, choose <em>Bookmark</em>, then select <em>Copy Bookmarked Lines</em></li>
<li>Create a new document with <em>File</em> &gt; <em>New</em> (or simply press Ctrl+n)</li>
<li>Do Ctrl+v (paste)</li>
</ul>
<p dir="auto">See what that gets you for a start.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97171</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97171</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 18 Oct 2024 11:29:08 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 10:17:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mark-olson" aria-label="Profile: Mark-Olson">@<bdi>Mark-Olson</bdi></a> The fact it’s JS is less relevant, I can save and treat as txt<br />
See example below<br />
I need the lines starting with       “created_at”  and “full_text” one after the others, or maybe with line number and then I can sort by line numbers</p>
<p dir="auto">I can send the whole file if needed</p>
<p dir="auto">},<br />
“display_text_range” : [<br />
“0”,<br />
“24”<br />
],<br />
“favorite_count” : “1”,<br />
“in_reply_to_status_id_str” : “1846199292232339627”,<br />
“id_str” : “1846219638109086002”,<br />
“in_reply_to_user_id” : “4774540948”,<br />
“truncated” : false,<br />
“retweet_count” : “0”,<br />
“id” : “1846219638109086002”,<br />
“in_reply_to_status_id” : “1846199292232339627”,<br />
“created_at” : “Tue Oct 15 16:00:37 +0000 2024”,<br />
“favorited” : false,<br />
“full_text” : “@zamir_shatz יש גם רמב"פ”,<br />
“lang” : “iw”,<br />
“in_reply_to_screen_name” : “zamir_shatz”,<br />
“in_reply_to_user_id_str” : “4774540948”</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97167</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97167</guid><dc:creator><![CDATA[Roni Segoly]]></dc:creator><pubDate>Fri, 18 Oct 2024 10:17:42 GMT</pubDate></item><item><title><![CDATA[Reply to a newbie question about search on Fri, 18 Oct 2024 05:34:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/roni-segoly" aria-label="Profile: Roni-Segoly">@<bdi>Roni-Segoly</bdi></a><br />
You say you have a “huge <code>js</code> file”. If by <code>js</code> you mean JSON, <a href="https://github.com/molsonkiko/JsonToolsNppPlugin" rel="nofollow ugc">the JsonTools plugin</a> can help. If by <code>js</code> you mean JavaScript, I may not be able to help; JsonTools can handle some JavaScript objects even if they don’t comply with the original JSON specification, but it can’t handle all the complexities of JavaScript syntax.</p>
<p dir="auto">If you provide a small example of what you are trying to do, I may be able to suggest how to solve your problem with JsonTools or some other plugin like <a href="https://github.com/bruderstein/PythonScript/releases" rel="nofollow ugc">PythonScript</a>.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/97161</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/97161</guid><dc:creator><![CDATA[Mark Olson]]></dc:creator><pubDate>Fri, 18 Oct 2024 05:34:35 GMT</pubDate></item></channel></rss>