<p dir="ltr">I've got a port of Vasilli's version in <a href="http://github.com/Cuis-Ports">github.com/Cuis-Ports</a> I've been using that pretty extensively for years without issues</p>
<div class="gmail_extra"><br><div class="gmail_quote">On Nov 22, 2016 11:31 AM, "KenD" <<a href="mailto:Ken.Dickey@whidbey.com">Ken.Dickey@whidbey.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Fri, 18 Nov 2016 10:39:52 -0300<br>
Edgar De Cleene <<a href="mailto:edgardec2005@gmail.com">edgardec2005@gmail.com</a>> wrote:<br>
<br>
> Folks:<br>
> I wish remove tags from HTMlL<br>
> According to <a href="https://regex101.com/" rel="noreferrer" target="_blank">https://regex101.com/</a> and <a href="http://www.freeformatter.com/regex-tester.html" rel="noreferrer" target="_blank">http://www.freeformatter.com/<wbr>regex-tester.html</a> and also of my old Nissus Pro.<br>
><br>
> <.+?><br>
><br>
> Should be a valid expression.<br>
><br>
> But<br>
><br>
>  regex|<br>
> regex := RxMatcher forString: '<.+?>’.<br>
><br>
> Gives my an error.<br>
><br>
> Any help ?<br>
<br>
Edgar,<br>
<br>
Sorry for the delay.  Busy lives..<br>
<br>
<br>
I found <a href="https://github.com/garduino/Cuis-Smalltalk-RegEx" rel="noreferrer" target="_blank">https://github.com/garduino/<wbr>Cuis-Smalltalk-RegEx</a> but this code is very old and simply loaded fails most test cases (see notes below).<br>
<br>
The Cuis-Smalltalk-RegEx code definitely signals an error for the example you site, even though<br>
  RegEx-Core RxParser DOCUMENTATION c:syntax:<br>
description would appear to support this use case.<br>
<br>
<br>
What source of RegEx are you using?  Is there a Cuis Package available?<br>
<br>
<br>
Note that I have zero experience with this package but am happy to help out as I get time.<br>
<br>
Best wishes,<br>
-KenD<br>
<br>
==============================<wbr>===========================<br>
<a href="https://github.com/garduino/Cuis-Smalltalk-RegEx" rel="noreferrer" target="_blank">https://github.com/garduino/<wbr>Cuis-Smalltalk-RegEx</a> notes:<br>
<br>
1) Needs requirements (tests should require core should require Squeak compatibility).<br>
<br>
2) Line endings should be newLines.<br>
<br>
3) Needs added compatibility methods, e.g.:<br>
<br>
'<br>
Array>>contains: other<br>
<br>
        ^ self includes: other<br>
'<br>
<br>
'<br>
Character>>sameAs: otherChar<br>
        "Case independent compare"<br>
<br>
        (self class) = (otherChar class) ifFalse: [ ^ false ].<br>
<br>
        ^(self asLowercase) = (otherChar asLowercase)<br>
'<br>
==============================<wbr>===========================<br>
<br>
<br>
______________________________<wbr>_________________<br>
Cuis mailing list<br>
<a href="mailto:Cuis@jvuletich.org">Cuis@jvuletich.org</a><br>
<a href="http://jvuletich.org/mailman/listinfo/cuis_jvuletich.org" rel="noreferrer" target="_blank">http://jvuletich.org/mailman/<wbr>listinfo/cuis_jvuletich.org</a><br>
</blockquote></div></div>