Nodejs Utililty Methods String Contains

List of utility methods to do String Contains

Description

The list of methods to do String Contains are organized into topic(s).

Method

contains(matcher)
String.prototype.contains = function(matcher) {
  const regex = new RegExp(matcher, 'i')
  return regex.test(this)
contains(needle)
String.prototype.contains = function(needle) {
    return this.indexOf(needle) >= 0;
};
contains(obj)
String.prototype.contains = function (obj) {
    return this.indexOf(obj) >= 0;
};
contains(pStr)
String.prototype.contains = function(pStr) {
  return this.indexOf(pStr) > -1;
};
String.prototype.doUpperCase = function(pBeginIndex, pLength) {
  pLength = pLength || 1;
  return this.substring(pBeginIndex, pLength).toUpperCase() + this.substring(pBeginIndex + pLength);
};
String.prototype.doLowerCase = function(pBeginIndex, pLength) {
  pLength = pLength || 1;
...
contains(palavra)
String.prototype.contains = function (palavra) {
  let indice = this.trim().indexOf(palavra);
  return indice >= 0;
contains(pattern)
String.prototype.contains = function(pattern) {
  return this.indexOf(pattern) !== -1;
};
contains(pattern)
String.prototype.contains = function(pattern) {
    return this.indexOf(pattern.canonize())>=0;
};
contains(s)
String.prototype.contains = function(s) {
  return this.indexOf(s) >= 0;
};
contains(s)
String.prototype.contains = function(s){
    return this.indexOf(s) != -1;
};
contains(s)
String.prototype.contains = function(s){
   return (this.indexOf(s)!=-1);