The non-white-space pattern \S (uppercase \S opposite of \s) documented for sed here was chosen because often we need to match spaces or non-spaces in regexp:
\S
sed 's/\(https\S*\)/"\1"/g' elenco.txt
same as
sed -E 's/(https\S+)/"\1"/g' elenco.txt