Suppose I have string below,
$text = "Hello World!";
By using below code to get string position. By using string position we can check/search in a given string.
if (strpos($text, 'World') !== false) { echo 'true'; }
Basically the expected ouput is "true".
Note that the use of !== false is deliberate. The strpos() function finds the position of the first occurrence of a string inside another string.
You might also like:
File Upload Using Angular Js and Node Js28-05-2018 AngularJs Node js file upload multer module |
Change datepicker display format06-03-2017 datepicker angular js |
Filter for change Date format (MM-dd-yyyy) in Angular Js05-03-2017 mm-dd-yyyy date formats angular js |
Call a function every second or 5 seconds in javascript22-02-2017 setinterval function calling |
Email validation regular expression in javascript22-02-2017 email validation regex |