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+).*$/