Bug in Find Code Using Regular Expressions
Posted: Mon Aug 24, 2009 11:51 pm
Hello.
I am using Oxygen XML Editor 10.3 (build 2009062616) on Windows XP (SP3). I am trying to do some find/replace operations using regular expressions, and have come across some behavior that seems to me to be a bug.
Using the following chunk of XML:
Attempt to do a Find (using regex) with the following pattern:
Notice how the final angle bracket in the closing </item> tag is omitted from the found text. This seems to me a bug.
Thank you.
I am using Oxygen XML Editor 10.3 (build 2009062616) on Windows XP (SP3). I am trying to do some find/replace operations using regular expressions, and have come across some behavior that seems to me to be a bug.
Using the following chunk of XML:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<item>omnium doctrīnārum inventrīcēs Athēnās <bibl>(<ref cRef="De Or. i. 13"><ref target="#bibl-CIC-DEOR">De Or.</ref> i. 13</ref>),</bibl> Athens, discoverer of all learning.</item>
Code: Select all
(</bibl>*?)([\w\W]*?)(</item>*?)
Thank you.