Returns the program size of this pattern. Similar to the C++ implementation, the program size is a very approximate measure of a regexp's "cost". Larger numbers are more expensive than smaller numbers. @return the program size of this pattern
()
| 224 | * @return the program size of this pattern |
| 225 | */ |
| 226 | public int programSize() { |
| 227 | return numberOfInstructions; |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Returns the most recent match. |
no outgoing calls