g | x | w | all
Bytes Lang Time Link
007Jelly241106T183543ZJonathan
010Retina 0.8.2241106T152543ZUnrelate
027JavaScript Node.js241106T151406Zl4m2

Jelly, 7 bytes

ṭ€Ðo⁾1*

A full program that accepts a string, as defined by the regex, and prints an executable expression.

Try it online!

How?

Prepends each single character variable or single character constant with 1*.
Does not need to find these as they are guaranteed to be every other character.

ṭ€Ðo⁾1* - Main Link: list of characters (matching the regex in the question)
 €Ðo    - apply to each character at an odd index:
ṭ   ⁾1* -   tack to "1*"
        - implicit, smashing print

Also 7 bytes

⁾1*;ṛƭ)

Again a full program Try it online!.

Retina 0.8.2, 12 11 10 bytes

[^+]+
1*$0

Try it online!

-1 porting l4m2 by accident while trying to think of something cooler

-1 thanks to Neil suggesting a version change

Fairly boring substitution, but probably not much that can outdo this here.

JavaScript (Node.js), 27 bytes

x=>x.replace(/\w+/g,'1*$&')

Try it online!