Nodejs String Starts With startsWith(s)

Here you can find the source of startsWith(s)

Method Source Code

/** @fileoverview/*from  w w  w  .jav a2s.  c  o  m*/
 * 
 * A bunch of methods which extend the {@link String} prototype.
 * 
 * @see String
 */
   
/**
 * Test is a string starts with another 
 * 
 * @param {String} s string to test with
 * @type boolean
 */
String.prototype.startsWith = function (s) {
   return (this.indexOf(s) === 0);
}

Related

  1. startsWith(prefix)
    String.prototype.startsWith = function (prefix){
      return this.slice(0, prefix.length) == prefix;
    
  2. startsWith(prefix)
    String.prototype.startsWith = function(prefix)
      if(prefix == null)
        return false;
      if(this.length < prefix.length)
        return false;
      return this.substring(0, prefix.length) == prefix;
    };
    String.prototype.endsWith = function(suffix)
    ...
    
  3. startsWith(prefix)
    String.prototype.startsWith = function (prefix) {
      return this.substring(0, prefix.length) == prefix;
    };
    
  4. startsWith(prefix, ignoreCase)
    String.prototype.startsWith = function (prefix, ignoreCase) {
        var _prefix = prefix.source ? prefix.source : prefix.escapeRegExp();
        return this.match(new RegExp("^" + _prefix, ignoreCase ? 'i' : ''));
    };
    String.prototype.endsWith = function (suffix, ignoreCase) {
        var _suffix = suffix.source ? suffix.source : suffix.escapeRegExp();
        return this.match(new RegExp(_suffix + "$", ignoreCase ? 'i' : ''));
    };
    String.prototype.escapeRegExp = function() {
    ...
    
  5. startsWith(s)
    String.prototype.startsWith = function (s) {
        if (this.substr(0, s.length) === s)
            return true;
        else
            return false;
    
  6. startsWith(s)
    String.prototype.startsWith = function(s) {
        return (s === this.substr(0, s.length));
    
  7. startsWith(s)
    String.prototype.startsWith = function(s){
       return (this.indexOf(s)===0);
    
  8. startsWith(s)
    function nullOrEmpty(obj) {
        if (obj == null || obj.length == 0 || obj == 'undefined') {
            return true;
        return false;
    String.prototype.startsWith = function (s) {
        return (this.indexOf(s) == 0);
    };
    ...
    
  9. startsWith(s)
    String.prototype.startsWith=function(s)
      return this.substring(0,s.length)==s;
    };
    var defaultTrimChars=' \t\r\n';
    String.prototype.trimStart=function(chars)
      chars=chars ||defaultTrimChars;
      return this.replace(new RegExp('^['+chars+']+'), '');
    ...