As you state it, you might simply use macros. Unfortunately, their name cannot contain digits, by default:
\newcommand\textOne{Blabla}
\newcommand\textTwo{More blabla}
\section{Introduction}
\textOne % will display Blabla
\textTwo % will display More blabla
\section{Summary}
As we already said: \textOne
If you want to use "variable names" including digits (or other symbols), you can do so with \csname ...\endcsname:
\defText#1#2{\expandafter\newcommand\csname text:#1\endcsname{#2}}
\useText#1{\csname text:#1\endcsname}
\defText{1}{This is the first paragraph.}
\defText{2}{This is the second paragraph.}
\section{Introduction}
\useText{1}
\useText{2}
\section{Summary}
As we already said: \useText{1}
(In the present case, since "1" and "2" are single digits, you can even omit the {} around them, i.e., use: \defText1{...} and \useText1.)
More interesting, if you want to be able to define the text later in the document (e.g. in the References section) but use it earlier (in the main text), then you need roughly what the \label command does (namely, write the information into the .aux file which is read at the beginning of the (subsequent) compilation), with customized information instead of the current section name or equation label etc.
Consider this:
\documentclass{article}
\makeatletter
% Define the label #1 to be #2, so \ref{X} gives Y:
\def\LABEL#1#2{\protected@edef\@currentlabel{#2}\label{#1}}
\begin{document}
\section{Introduction}
Anticipating the result, we will prove in this paper that: \ref{text1}
\section{Conclusion}
From what precedes, we conclude:
\LABEL{text1}{We are the best.}
\ref{text1}
\end{document}
\textOne,\textTwo, etc. – Jinwen May 27 '22 at 08:29\textis an existed (and widely used) command for producing normal text in math mode, so it is not advisable to redefine it. – Jinwen May 27 '22 at 08:31\expandafter\def\csname text1\endcsname{This is text from the text1 variable and it is added in here.}and in the document body\csname text1\endcsname, but probably not advisable here. See the good answer of Ulrich Diez, https://tex.stackexchange.com/a/645732. – Stephen May 27 '22 at 11:24\csname..\endcsname. My answer is, among other things, an attempt to further elaborate on what Jinwen's comments already addressed even before I started writing. – Ulrich Diez May 27 '22 at 11:36