入力テキストを変更し、それらを、a=1
などの対応する数値に変更するバッチファイルを作成しようとしています。b=2
c=3
@echo off
set /p text=
echo :: %text% ::
echo Is this the expected text? //user can manually typo check
pause
cls
for /f delims=: %%i in ("%text%") do (
[something that changes the letters into numbers & store in variable]
)
::do stuff to numbers