Write a PHP program to find the first non-repeated character in a given string

  • برمجة بي اتش بي

Write a PHP program to find the first non-repeated character in a given string.

Sample Example:

Input: Green
Output: G
Input: abcdea
Output: b

الأجوبة

<?php
 function find_non_repeat($word) {
  $chr = null;
  for ($i = 0; $i <= strlen($word); $i++) {
     if (substr_count($word, substr($word, $i, 1)) == 1) {
        return substr($word, $i, 1);
     }
  }
}

echo find_non_repeat("Green")."\n";
echo find_non_repeat("abcdea")."\n";
?>

Sample Output:

G                                                           
b
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...