<?php $string = "Small brown bug bit a small brown dog on his small brown nose"; $count; //Converts the string into lowercase $string = strtolower($string); //Split the string into words using built-in function $words = explode(" ", $string); print("Duplicate words in a given string : <br>"); for($i = 0; $i < count($words); $i++) { $count = 1; for($j = $i+1; $j < count($words); $j++) { if($words[$i] == $words[$j]) { $count++; //Set words[j] to 0 to avoid printing visited word $words[$j] = "0"; } } //Displays the duplicate word if count is greater than 1 if($count > 1 && $words[$i] != "0"){ print($words[$i]); print("<br>"); } } ?>
Duplicate words in a given string :
small
brown
We evaluated the performance of Llama 3.1 vs GPT-4 models on over 150 benchmark datasets…
The manufacturing industry is undergoing a significant transformation with the advent of Industrial IoT Solutions.…
If you're reading this, you must have heard the buzz about ChatGPT and its incredible…
How to Use ChatGPT in Cybersecurity If you're a cybersecurity geek, you've probably heard about…
Introduction In the dynamic world of cryptocurrencies, staying informed about the latest market trends is…
The Events Calendar Widgets for Elementor has become easiest solution for managing events on WordPress…