> Have anyone done validatoin of word file differently or is it possible to do it effectively thro' perl?
I validate text files (no word files, just plain ascii) with Perl. Perl is very good at this. For catching parenthesis I wrote my own function, I do not know of any module that does this. You have to work around a few problems like not closed open parenthesis or else like this, but in general you can relative easily catch the parenthesis with regular expressions.
| [reply] |
I think my post above has been downvoted because I use my own function and not the module mentioned above. As far as I know can it only say, if the string is in parenthesis or not, but it can not handle strings with parts in parenthesis. My function insertes XML-Tags that show matching or not matching parenthesis and much more, thats why I have to do it my own way. I just wanted to show, that Perl is very good in string handling and tasks like the one of the original poster can be done with Perl very well. I think there is no reason for downvoting. If you have a problem with that tell me, but don't downvote.
| [reply] |