文中の文字をアスタリスクに置き換えるC#プログラム
Replace()メソッドを使用して、文字をアスタリスクに置き換えます。
文字列が-
だとしましょうstring str = "dem* text";
置き換えるには、Replace()メソッド-
を使用しますstr.Replace('*', 'o');
これが完全なコードです-
例
using System; public class Program { public static void Main() { string str = "dem* text"; Console.WriteLine("Initial string = " + str); string res = str.Replace('*', 'o'); // after replacing Console.WriteLine("After replacing asterisk = " + res.ToString()); } }
出力
Initial string = dem* text After replacing asterisk = demo text
-
文字列内の「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 +=
-
文中の単語をアスタリスクに置き換えるPythonプログラム
プログラムを使用して、文中の単語をアスタリスクに置き換え、文からの冒とく的な単語などを検閲することができます。たとえば、 文があれば "Go feed all the ducks in the lake" そして、アスタリスクに置き換えたい単語、アヒルとしましょう。そうすると、最後の文は次のようになります- "Go feed all the ***** in the lake" この機能を実現するために、Pythonのreplace関数を直接使用できます。たとえば、 例 def replaceWithAsterisk(sent, word): #