I would like to determine how many characters of the verbatim font that fits on a text line. Consider:
\documentclass{article}
\usepackage{fancyvrb}
\begin{document}
\noindent\hrulefill
\begin{Verbatim}[fontfamily=tt,fontsize=\small]
1234567890123456789012345678901234567890123456789012345678901234567890123456789012456789012345678901234567890123456789
\end{Verbatim}
\noindent\hrulefill\\
\end{document}
This gives me the following screenshot:

from which I can infer that there are approximately 73 characters on a line. How can I determine this number programmatically from within LaTeX?
