For the purpose of learning the new expl3 syntax I have decided to rewrite my varsfromjobname package that separates the jobname into diffent tokens. I am struggling however with the new syntax. So far I have understood that I need to define a target variable of type sequence, which takes the individual strings as well as use the \seq_set_split function to do the split.
\documentclass{article} \usepackage{expl3} \usepackage{xstring} \usepackage{xparse} \ExplSyntaxOn \NewDocumentCommand{\vfjn}{}{% \seq_new:N \l_vfjn_seq \seq_set_split:Nnn \l_vfjn_seq {-} {\jobname} } \ExplSyntaxOff \begin{document} \vfjn \end{document} But how can I proceed from there? I read about an l3seq package, but \usepackage{l3seq} resulted in an error that the package could not be found.
