gpt4 book ai didi

windows - 从 Windows shell 脚本中的字符串中提取数字

转载 作者:可可西里 更新时间:2023-11-01 10:06:46 25 4
gpt4 key购买 nike

我有一个像这个脚本文件 hello-1234-something 的字符串。我需要使用批处理文件获得 1234。但是数字 1234 不一样,它不断变化我需要在字符串中找到数字并只取出数字。我是批处理文件编程的新手。我想批量完成

最佳答案

试试这个:

@ECHO OFF &SETLOCAL ENABLEDELAYEDEXPANSION
SET "teststring=abcDEFG1234ABSdefh"

FOR %%a IN (
a b c d e f g h i j k l m n o p q r s t u v w x y z
) DO (
SET "teststring=!teststring:%%a=!"
)
ECHO %teststring%

注意:这不适用于特殊字符,例如:<>&|!^

关于windows - 从 Windows shell 脚本中的字符串中提取数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17817218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com