I was looking at some regular expression related posts earlier today, and I noticed many of them showing something along the lines of:
<a\\b[^>]*href=\"[^>]*>(.*?)
The issue is in the
.*?
That may exclude line terminators. If you use
[\\W\\w\\s]*
in place of that. It will work around the line terminator issues. That is unless you are specifically looking for some specific tag without a line terminator.
subversion with libserf – continued
-
Further about my work on packages for Apache Subversion with support for
serf / libserf / ra_serf, that repository access module was not made
default in th...
1 day ago

0 comments:
Post a Comment