Hi,
I have got a pattern ?DB* in an xml file as shown.
<project-name id="?DB*">
<commands>.....
</commands>
</project-name>
Now, I need to match this pattern with a string(Egs. "PDB", "TDB_PLO") I have got in my code. If a match is found, the commands in this block are to be executed.
How should I go about it? Is there any provision in java to handle such a functionality.
Thanks