Call Perl from java, mainly for regular expression matching

前端 未结 2 1778
旧巷少年郎
旧巷少年郎 2021-01-16 01:41

I\'d like to execute Perl code efficiently from Java. The purpose of the Perl is mainly to perform regular expression matching (in some tests it Perl was more efficient than

2条回答
  •  情书的邮戳
    2021-01-16 02:00

    Why are you not happy with java.util.regex.Pattern and java.util.regex.Matcher classes that you want to use Perl's regex capabilities? ;-)

提交回复
热议问题