<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>FileSeek RSS: Regular expression is not working</title>
<atom:link href="https://www.fileseek.ca/Discussions/RSS/?TopicID=018f0b86-e27c-7257-8155-fd2c965398cb" rel="self" type="application/rss+xml" />
<link>https://www.fileseek.ca/Discussions/RSS/?TopicID=018f0b86-e27c-7257-8155-fd2c965398cb</link>
<description>FileSeek RSS: Regular expression is not working</description>
<lastBuildDate>Wed, 13 May 2026 16:35:55 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.fileseek.ca/Discussions/RSS/?TopicID=018f0b86-e27c-7257-8155-fd2c965398cb</generator>
<item>
<title>RE: Regular expression is not working</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-is-not-working/?ID=018f0b86-e27c-7257-8155-fd2c965398cb#2</link>
<pubDate>Tue, 23 Apr 2024 20:02:45 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-is-not-working/?ID=018f0b86-e27c-7257-8155-fd2c965398cb#2</guid>
<category>FileSeek</category>
<description><![CDATA[Looks like it's not supported - https://www.fileseek.ca/Discussions/View/regular-expression-to-find-cr-and-lf/?ID=fd33cc61-5d3f-4501-90f3-ccd5317a895c]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Looks like it's not supported - <a href="https://www.fileseek.ca/Discussions/View/regular-expression-to-find-cr-and-lf/?ID=fd33cc61-5d3f-4501-90f3-ccd5317a895c" target="_blank" rel="nofollow"><b>https://www.fileseek.ca/Discussions/View/regular-expression-to-find-cr-and-lf/?ID=fd33cc61-5d3f-4501-90f3-ccd5317a895c</b></a>
</div>
]]></content:encoded>
</item>
<item>
<title>Regular expression is not working</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-is-not-working/?ID=018f0b86-e27c-7257-8155-fd2c965398cb</link>
<pubDate>Tue, 23 Apr 2024 15:15:41 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-is-not-working/?ID=018f0b86-e27c-7257-8155-fd2c965398cb</guid>
<category>FileSeek</category>
<description><![CDATA[I'm trying to find a match using regular expression across two lines in a JSON file.  The snippet of the json file is below
Code
Copy
Select All
"eventData" : {
"header" : {
"correlationId" : "d1ae2af3-1b2d-41dc-afe7-1f61c5e3a2d8",
"memberNumber" : {
"string" : "636FP25979"
},
I'm tryin...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I'm trying to find a match using regular expression across two lines in a JSON file.  The snippet of the json file is below<br/>
<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019e2231e57272dfaf233d1ed40b5a25" class="ClipboardCopyControl"><img src="https://www.fileseek.ca/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019e2231e57272dfaf233d1ed40b5a25Js'); return false;"><img src="https://www.fileseek.ca/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019e2231e57272dfaf233d1ed40b5a25Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">"eventData" : {
    "header" : {
      "correlationId" : "d1ae2af3-1b2d-41dc-afe7-1f61c5e3a2d8",
      "memberNumber" : {
        "string" : "636FP25979"
      },</pre><textarea id="code019e2231e57272dfaf233d1ed40b5a25" name="code019e2231e57272dfaf233d1ed40b5a25" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
I'm trying to find the substring <b>FP</b> in the member number.<br/>
The pattern <div class="Inline"><pre>(?&lt;="memberNumber" : {\n        "string" : "[0-9]{3})[A-Z]{2}</pre></div> works in Regex101<br/>
<a href="https://regex101.com/r/0eCAes/1" target="_blank" rel="nofollow"><b>https://regex101.com/r/0eCAes/1</b></a><br/>
<br/>
But it doesn't work in FileSeek.  Can someone help me with a multi-line pattern?<br/>
I did try changing the <b>\n</b> to <b>\r\n</b> since I am on Windows.  It didn't help.
</div>
]]></content:encoded>
</item>
</channel>
</rss>