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.
文字列内のすべての数字を太字にするにはどうすればよいですか?
例: $st_nu = "Today123"になりToday<b>123</b>ます。
$st_nu = "Today123"
Today<b>123</b>
正規表現を使用して、数字のみを太字にすることができます。
preg_replace('/(\d+)/', '<b>$1</b>', $st_nu);
これが行うことは、1 文字以上の長さの任意の数字に一致し、それを<b>タグ (太字) で囲みます。
<b>
あなたの例を使用すると、次のように返されます。
今日123