14Aug/066
Like Equivalent
I am looking for an equivalent to the Like function in LotusScript but in Java. I need this to complete Java portion of Open Audit. Any one willing to help? The code should conform to the following criteria.
| Wildcard | Matches |
| ? | Any one character |
| # | Any one digit from 0 through 9 |
| * | Any number of characters (zero or more) |
| [characters] | Any one of the characters in the list or range specified here |
| [!characters] | Any one character not included in the list or range of characters specified here |