I'm importing some big data tables into my HTML pages. Apparently, some of the table cells contain long strings without spaces, which are breaking my layout. That is, I can't set the table width to say, 500 pixels because these long, unbroken strings are stretching out the cell widths in at least one of the columns. And since there are thousands of rows, I can't find them manually.
Naturally, I don't know in advance how long the strings actually are or what they contain, only that they are much longer than a typical word. They may be occuring at the beginning of a sentence, mid-paragraph (bounding by spaces), or at the end of a sentence (terminated with a period). They are probably 30 are more characters long, but could be much longer in the case of a long and nasty URL.
How can construct a regular expression (or other Find / Replace method) to find these long strings? Thanks for your help!
Naturally, I don't know in advance how long the strings actually are or what they contain, only that they are much longer than a typical word. They may be occuring at the beginning of a sentence, mid-paragraph (bounding by spaces), or at the end of a sentence (terminated with a period). They are probably 30 are more characters long, but could be much longer in the case of a long and nasty URL.
How can construct a regular expression (or other Find / Replace method) to find these long strings? Thanks for your help!