
Originally Posted by
Di3F[dktech]
If you are so ... that you don't know how to download one library file, I can make image about you too..
It's not that I don't know how, it's that I can't be bothered. Yay, more Microsoft crap cluttering my system. No thanks.

Originally Posted by
Di3F[dktech]
I think Perl should be same way powerfull, but it cannot achieve nice clean style of code readability.. And yes, it is simple to do application in python ;)
Let's see... in Python:
Code:
import re
someString = "The cat chased after the the ball."
someString = re.compile(r'(\b\w+)\s+\1').sub(r'\1', someString)
print someString
In Perl:
Code:
$someString = "The cat chased after the the ball.";
$someString =~ s/(\b\w+)\s+\1/\1/g;
print $someString;
The concept of making "regular expression objects" really bothers me. Granted, it fits in with the OO paradigm, but it's very unnatural from a text processing perspective. If your script is doing nothing but text processing, why use a language for which text processing functions were an afterthought? (Perl-compatible RE's were only added in Python 1.5, previously the 'regex' module provided emacs-style RE's which are much less efficient).

Originally Posted by
Di3F[dktech]
I hope noone DOS him ;)
Which is why I would have written in in Perl, so that it's easy to run locally. OTOH, a nice web interface is accessible to anyone with a web browser with no need to install any additional software or libraries.