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.
私はこのようなものを変換しようとしています:
@Username
の中へ:
<a href="Username">Username</a>
ただし、正規表現がどこにも見つかりません。助言がありますか?
ありがとう!
<?php $str = "Sample text @Username sample text."; $new_str = preg_replace( '\@([a-zA-Z0-9]*)', '<a href="$1">$1</a>', $str ); echo $new_str; ?>
私はそれがうまくいくと思います。