I need to enclose every single word that is at least 2 chars in length, in a string between a span tag. All question marks, punctuation, etc, should be left outside the spans (they must only hold a-z and also special characters as ñ,á,é, etc).
So, this:
Prenda de vestir que se ajusta? A la cintura y llega generalmente hasta el pie.
Should be this:
<a href=http://example.com/prenda>Prenda</a> <a href=http://example.com/de>de</a> <a href=http://example.com/vestir>vestir</a> <a href=http://example.com/que>que</a>
<a href=http://example.com/se>se</a> <a href=http://example.com/ajusta>ajusta</a>? A <a href=http://example.com/la>la</a>
<a href=http://example.com/cintura>cintura</a> y <a href=http://example.com/llega>llega</a>
<a href=http://example.com/generalmente>generalmente</a> <a href=http://example.com/hasta>hasta</a> <a href=http://example.com/el>el</a> <a href=http://example.com/pie>pie</a>.
Any ideas? Thanks!