One more bug:
The call to pcre2_compile_32 should be changed from:
code = pcre2_compile_32(pattern_ucs, pattern.size(),
PCRE2_NO_UTF_CHECK | flags, &error_code,
&error_offset, 0);
To:
code = pcre2_compile_32(pattern_ucs, pattern.size()
On 9 October 2017 at 04:56, Elias Mårtenson wrote:
> Currently, monadic ↑ acts as if it was called dyadically with 1 as its
> left argument,
>
That's not quite true:
⍴⍴1↑'ABC'
1
⍴⍴↑'ABC'
0
while monadic ↓ raises a VALENCE ERROR. In almost every single case where I
> have used ↓, it
Could you please update https://www.gnu.org/software/apl/apl.html ? Or will
it update automatically in due course?
Thanks,
Jay.
On 8 October 2017 at 17:47, Juergen Sauermann wrote:
> Hi,
>
> I have merged Elias' *⎕RE* implementation into GNU APL.
> Thanks, Elias, for contributing it. See *'info
I was thinking about the usefulness of a monadic ↓ in terms of the new
regexp feature. In the current version, when using subexpressions, the
return value is always 1+the number of subexpressions, where the first one
is always the full matched string. Monadic ↓ would be a neat way of
dropping that
On 9 October 2017 at 10:06, Elias Mårtenson wrote:
> In GNU APL, I'd use ⊂⍤1 to achieve Split. Is that the most efficient way?
>
>
Either that or ⊂[2] (or in general ⊂[n] where n is the rank of the
argument).
On 9 October 2017 at 17:32, Jay Foad wrote:
> On 9 October 2017 at 10:06, Elias Mårtenson wrote:
>
>> In GNU APL, I'd use ⊂⍤1 to achieve Split. Is that the most efficient way?
>>
>>
> Either that or ⊂[2] (or in general ⊂[n] where n is the rank of the
> argument).
>
Thank you. I learned somethin
One more issue. The last snippet in the info manual for regexp (great work,
and thanks for doing it, by the way) looks really weird, probably because
the content is too wide.
Regards,
Elias
On 9 October 2017 at 17:02, Jay Foad wrote:
> Could you please update https://www.gnu.org/software/apl/ap