I just had the problem that I wanted to remove line breaks which were located after normal characters. The solution was to use a ‘look behind’ Regular Expression, which is also supported by the awesome TextMate editor. This was my find expression:
(?<=[a-z])\n
and I replaced it with an empty string.
