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.
私はこの文字列ので修飾される正規表現を考え出そうとしてい25ます:
25
Always - 25 (Lifetime
-との間のスペースの量は25可変ですが、末尾(Lifetimeは常にそこにあります。
-
(Lifetime
私はこれを試しました:しかし、それはそれに先行するすべてのものpreg_match('/\s(.*)\s\(Lifetime',$sString,$aMatch);に適合します。25
preg_match('/\s(.*)\s\(Lifetime',$sString,$aMatch);
次のことを試してください。
preg_match('~\s+(\d+)\s\(Lifetime~', $sString, $aMatch);
1つ以上のスペース文字、数字、最後に(Lifetime文字列に一致します。