I want to know if there is a way to extract some part of a named path and use this part later on for e.g. stroking. In my example, I want to stroke the line in the middle (the path named mitte) from the picture's left side to the beginning of the text (intersection named (A)) and from the end of the text (intersection named (E)) to the picture's right side. It's important that nothing is drawn behind the text.

In the code I included two lines of pseudo code to show what I would like to do.
\documentclass[tikz, border=5mm]{standalone}
\usepackage[T1]{fontenc}
\usetikzlibrary{decorations.text,intersections,calc}
\begin{document}
\Huge \bfseries
\catcode`\|12
\begin{tikzpicture}[decoration={text along path, text={Blablablablablabla}, text align={left indent=10.0mm}}]
\draw[rounded corners] (9.0,2.25) -- (11.5,2.25) .. controls (13.0,2.25) and (13.0,4.25) .. (20.5,4.25);
\draw[name path=mitte, rounded corners] (9.0,1.25) -- (11.5,1.25) .. controls (13.0,1.25) and (13.0,3.25) .. (20.5,3.25);
\draw[rounded corners] (9.0,0.25) -- (11.5,0.25) .. controls (13.0,0.25) and (13.0,2.25) .. (20.5,2.25);
\draw[decorate, above=6mm] (11.5,0.25) .. controls (13.0,0.25) and (13.0,2.25) .. (20.5,2.25);
\draw[name path=anfang] (12.1,4.5) -- (12.1, 0.0);
\draw[name path=ende] (19.6,4.5) -- (19.6, 0.0);
\path[name intersections={of=mitte and anfang, by=A}];
\path[name intersections={of=mitte and ende, by=E}];
%--> \draw[along path=mitte] from beginning to (A);
%--> \draw[along path=mitte] from (E) to end;
\end{tikzpicture}
\end{document}
Any suggestions?
