Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
var ok = s.Contains(word);
var ok = s.contains(word);
ok = String.contains?(s, word)
Ok = string:str(S, Word) > 0.
ok = index(string, word) /= 0
ok = word `isInfixOf` s
var ok = s.includes(word);
var ok = s.indexOf(word) !== -1;
boolean ok = s.indexOf(word) != -1;
boolean ok = s.contains(word);
val ok = s.contains(word)
val ok = word in s
(setf ok (search word s))
ok = s:find(word, 1, true) ~= nil
ok = false
if s:find(word, 1, true) then ok = true end
ok = s:find(word, 1, true)
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
// N贸tese el uso de ===. Puesto que == simple no funcionar谩 como se espera
// porque la posici贸n de 'a' est谩 en el 1掳 (primer) caracter.
if ($pos === false) {
echo "La cadena '$findme' no fue encontrada en la cadena '$mystring'";
} else {
echo "La cadena '$findme' fue encontrada en la cadena '$mystring'";
echo " y existe en la posici贸n $pos";
}
$ok = str_contains($s, $word);
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
// N贸tese el uso de ===. Puesto que == simple no funcionar谩 como se espera
// porque la posici贸n de 'a' est谩 en el 1掳 (primer) caracter.
if ($pos === false) {
echo "La cadena '$findme' no fue encontrada en la cadena '$mystring'";
} else {
echo "La cadena '$findme' fue encontrada en la cadena '$mystring'";
echo " y existe en la posici贸n $pos";
}
ok := pos(word,s)<>0;
$ok = index($s,$word) >= 0;
ok = word in s
ok = s.include?(word)
let ok = s.contains(word);
val ok = s.contains(word)
ok := s includesSubstring: word.
Dim ok As Boolean = s.Contains(word)