Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
バッチスクリプトを使用して、スペースで区切られた行の最初のトークンを取得したいと思います。これはforループなしで実行できますか?
example input: a b c d example output: a
ありがとう。
CALL次のようなコマンドを使用して、テキストをバッチパラメータとして渡します。
CALL
@echo off setlocal set text=a b c d set result= call :getFirstParam %text% echo %result% goto :eof :getFirstParam set result=%1 goto :eof
AWKは次のように使用できます。
awk '{print $1}' <your_file>