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.
翻訳しようとしている次のコードがあります。それはかなり簡単に思えますが、同等の preg_replace を c# で実装する方法がわかりません
$sentence = trim(preg_replace('/[¿?¡!«»}،\]\/()[{,、/.,;":0-9]/', ' ', $_GET["sentence"])); $word = explode(" ", $sentence ); foreach($word as $k => $v) { echo $v."; "; };