1

Are there any libraries that supports this regexp-specification in java?

Know the Mozilla Rhino uses this specification, but how can this be implemented in java?

UPDATE:
Found a library called jakarta-oro that supports perl5-regular expression which uses ecma-262.

http://jakarta.apache.org/oro/index.html

Jason Aller
  • 3,541
  • 28
  • 38
  • 38
jorgen.ringen
  • 1,285
  • 5
  • 14
  • 20

1 Answers1

0

If Rhino supports it, why not use the Rhino scripting support in Java to use Rhino? Look up JSR-223, and you can use javascript in a Java application if that's what you need.

Joseph Ottinger
  • 4,911
  • 1
  • 22
  • 23
  • Thanks. You can use the native javascript support in java to, but a framework that supports the regexp standard would be preferable. – jorgen.ringen Apr 05 '11 at 11:27