https://tex.stackexchange.com/a/207977/197451
First method with collectcell and detokenise

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{array,collcell}
\newcommand{\myverb}[1]{\ttfamily\detokenize{#1}}
\begin{document}
\begin{tabular}{ >{\collectcell\myverb}l<{\endcollectcell} l }
PI_all_data_BBB_M15X.pdf & Results for \verb=BBB= model with profile plots \
PI_all_data_BetaBin_M15X.pdf & Results for \verb=BetaBin= model with profile plots \
PI_all_data_BinLNB_M15X.pdf & Results for \verb=BinLNB= model with profile plots \
PI_all_data_Bin_M15X.pdf & Results for \verb=Bin= model with profile plots \
PI_all_data_LogGamma_M15X.pdf& Results for \verb=LogGamma= model with profile plots \
PI_all_data_TwoBin_M15X.pdf & Results for \verb=TwoBin= model with profile plots
\end{tabular}
\end{document}
Second method with shortvrb package

\documentclass{article}
\usepackage{shortvrb}
\MakeShortVerb{|}
\begin{document}
\begin{tabular}{l l}
|some % text here| & some text here \
|some $ text here| & some text here \
|some { text here| & some text here \
\end{tabular}
\end{document}
https://tex.stackexchange.com/a/297214/197451