I have an ant property which has value of the type 1.0.0.123
I want to extract the value after the last dot, in this case that would be '123'. Which ant task should i use and how?
|
|
|
Ok i have found the answer myself and this is tested. you just gotta use a bit of javascript.
|
|||
|
|
|
I suspect the easiest approach may be to use the ant-contrib PropertyRegex task. Something like this - completely untested:
|
|||
|
|
|
||||
|
|
|
Here's a solution using flaka without scripting =
|
||||
|
|
|
If not wanting to use external libs nor scripting, I found in an answer to a similar question the best option (credit him for this answer). Here you'll be using a ReplaceRegex:
Of course, this is still missing the incrementing part of your answer, but that was not in your question. |
|||
|
|