PHP
 Computer >> コンピューター >  >> プログラミング >> PHP

文中の単語を別の記号に置き換えるPHPプログラム


文中の単語を別の記号に置き換えるためのPHPコードは次のとおりです-

<?php
   $my_str = "This is a sample only";
   $search_str = array("sample", "This");
   $replace_str = array("simple");
   $result = str_replace($search_str, $replace_str, $my_str);
   print_r("The final replaced string is :");
   print_r($result);
?>

出力

The final replaced string is : is a simple only

ここでは、文字列が定義され、別の文字列に置き換える必要のある文字列が配列内に配置され、変数に配置されます-

$my_str = "This is a sample only";
$search_str = array("sample", "This");
$replace_str = array("simple");

「str_replace」関数は、値を別の指定された値に置き換えるために使用されます。結果は画面に印刷されます-

$result = str_replace($search_str, $replace_str, $my_str);
print_r("The final replaced string is :");
print_r($result);

  1. 文字列内の「a」のすべての出現箇所を$に置き換えるPythonプログラム

    文字列内で出現するすべての「a」を「$」などの文字に置き換える必要がある場合は、文字列を繰り返して、「+=」演算子を使用して置き換えることができます。 以下は同じのデモンストレーションです- 例 my_str = "Jane Will Rob Harry Fanch Dave Nancy" changed_str = '' for char in range(0, len(my_str)):    if(my_str[char] == 'a'):       changed_str +=

  2. 文中の単語をアスタリスクに置き換えるPythonプログラム

    プログラムを使用して、文中の単語をアスタリスクに置き換え、文からの冒とく的な単語などを検閲することができます。たとえば、 文があれば "Go feed all the ducks in the lake" そして、アスタリスクに置き換えたい単語、アヒルとしましょう。そうすると、最後の文は次のようになります- "Go feed all the ***** in the lake" この機能を実現するために、Pythonのreplace関数を直接使用できます。たとえば、 例 def replaceWithAsterisk(sent, word): #