文字列内の文字数を検索するPHPプログラム
文字列内の文字数を見つけるためのPHPコードは次のとおりです-
例
<?php $my_string = "Hi there, this is a sample "; $len = mb_strlen($my_string); print_r("The number of characters in the string is "); echo $len; ?>
出力
The number of characters in the string is 27
上記では、-
の間に必要以上のスペースがある文字列が定義されています。$my_string = "Hi there, this is a sample ";
次に、「strlen」関数を使用して文字列の長さが計算されます。この長さは変数に割り当てられます。これにより、スペースも含めて文字列に存在する文字が表示されます-
$len = mb_strlen($my_string);
計算された長さは画面に印刷されます-
print_r("The number of characters in the string is "); echo $len;
-
文字列に存在する単語数と文字数を計算するPythonプログラム
文字列に含まれる単語や文字の数を計算する必要がある場合 以下は同じもののデモンストレーションです 例 my_string = "Hi there, how are you Will ? " print("The string is :") print(my_string) my_chars=0 my_words=1 for i in my_string: my_chars=my_chars+1 if(i==' '): my_words=my_w
-
文字列内のミラー文字を検索するPythonプログラム
ユーザー入力文字列とその位置からの位置を指定すると、文字をアルファベット順に文字列の長さまでミラーリングする必要があります。この操作では、「a」を「z」に、「b」を「y」に、「c」を「x」に、「d」を「w」に変更します。これは、最初の文字が最後になることを意味します。オン。 Inpu t: p = 3 Input string = python Output : pygslm アルゴリズム Step 1: Input the string and position from we need to mirror the characters. Step 2: Creating a s