Hello everyone
Wondering if there is anyway to destring a set of somewhat irregular macros which comprise strings and numbers. Example below:
Thanks.
Wondering if there is anyway to destring a set of somewhat irregular macros which comprise strings and numbers. Example below:
Code:
local a1="sds30wer" local a2="wweti256x" forvalues i=1/2{ local n`i'=????? //how to extract the numbers from a1 and a2 so that correspondingly we get locals of n1=30, n2=256? }
Comment