Claire_CJS Jul 530 10 2025-01-09 #1 Just trying to %@repeat a character with a space after it and i can’t.... There’s gotta be an easy way I’m missing.
Just trying to %@repeat a character with a space after it and i can’t.... There’s gotta be an easy way I’m missing.
Charles Dye Super Moderator May 5,357 163 Staff member 2025-01-10 #2 @REPEAT only repeats one character, not a string. If you pass multiple characters, only the first one will be repeated. Code: C:\>echo %@repeat[foo bar baz,12] ffffffffffff C:\>
@REPEAT only repeats one character, not a string. If you pass multiple characters, only the first one will be repeated. Code: C:\>echo %@repeat[foo bar baz,12] ffffffffffff C:\>
Claire_CJS Jul 530 10 2025-01-10 #3 OH GOOD LORD Derp Thanks for clarifying that. Here I was putting effort towards the impossible. Comical!
OH GOOD LORD Derp Thanks for clarifying that. Here I was putting effort towards the impossible. Comical!