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.
我需要一个可以删除破折号和字符的正则表达式,所以我只留下一个数字。
例如,如果我有这个:
1-Vehicle
我在上面使用正则表达式我会得到这个:
1
任何帮助都会很棒。
您可以使用此正则表达式。删除所有其他字符后,它将为您提供所有数字。
s/[^\d]//gis;
从字符串开头提取数字:/^(\d+).*$/