0

Does JDOQL support ^ for matching the start and $ for matching the end? I am having troubles getting them to work.

Are ^ and $ maybe already implied?

Timo Westkämper
  • 21,824
  • 5
  • 78
  • 111

1 Answers1

1

String.matches() support is well defined in the spec

only the following regular expression patterns are required to be supported and are portable: global “(?i)” for case-insensitive matches; and “.” and “.*” for wild card matches. The pattern passed to matches must be a literal or parameter.

DataNucleus
  • 15,497
  • 3
  • 32
  • 37