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.
100. 101. 102.
皆さん、これは私のテキストで、次のように変更したいです:
<tag>100.</tag> <tag>101.</tag> <tag>102.</tag>
私の正規表現は次のとおりです。
[0-9][0-9][0-9]\.
と置換する:
<tag>\1</tag>
しかし、うまくいきません:(数字とドット記号が見えませんでした。
前もって感謝します
いくつかの (キャプチャ) 括弧が必要です。
Re: (\d{3}\.) 交換<tag>\1</tag>
(\d{3}\.)
\.括弧内にがありません。これを試してください$regex = ":[\d\.]+:"。
\.
$regex = ":[\d\.]+:"