Trying to wrap text using longtable combined with seqsplit but it won't format correctly for something like
thisisareallylongexamplethisisareallylongexamplethisisareallylongexamplethisisareallylongexample with a space because seqsplit removes all spaces
\documentclass[pdftex]{report}
\usepackage[left=65pt,top=28pt,right=65pt,bottom=65pt]{geometry}
\usepackage{longtable}
\usepackage{seqsplit}
\begin{document}
\begin{longtable}{p{50pt} p{360pt} p{50pt}}
& \seqsplit{thisisareallylongexamplethisisareallylongexamplethisisareallylongexamplethisisareallylongexample with a space} & test \\
\end{longtable}
\end{document}

seqsplit? – Marc van Dongen Feb 21 '12 at 19:45seqsplitpackage, but the way you use it with non-existing very long strings of letters, how is it supposed to work in combination with LaTeX's hyphenation algorithm. – Marc van Dongen Feb 21 '12 at 19:58\or ties~, they're not removed. Does this solve your problem? – Werner Feb 21 '12 at 20:03