Skip to content
Adglob Infosystem Pvt Ltd
  • About Us
  • B2B and B2C Database
  • Bulk Email Solution
  • Contact Us
  • Corporate Email Service
  • Database Portfolio
  • Database Process Flow
  • Database Services
  • FAQs
  • Lead Generation
  • Managed Email Campaign Solution
  • Our Clients
  • Privacy Policy
  • Product Blog
  • Request Sample for Free Database
  • Terms & Conditions
  • Web Scrapping
  • Author: K Z

    This author has written 1821 articles
    1. Home>
    2. K Z>
    3. Page 97

    TypeScript – String search()

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    This method executes the search for a match between a regular expression and this String object. Syntax string.search(regexp); Argument Details regexp − A regular expression object. If a non-RegExp object obj…

    Continue ReadingTypeScript – String search()

    TypeScript – String replace()

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    This method finds a match between a regular expression and a string, and replaces the matched substring with a new substring. The replacement string can include the following special replacement…

    Continue ReadingTypeScript – String replace()

    TypeScript – String localeCompare()

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:1 Comment

    In this topic, we will discuss String localeCompare() in Typescript. This method returns a number indicating whether a reference string comes before or after or is the same as the…

    Continue ReadingTypeScript – String localeCompare()

    TypeScript – String lastIndexOf()

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    This method returns the index within the calling String object of the last occurrence of the specified value, starting the search at fromIndex or -1 if the value is not found. Syntax string.lastIndexOf(searchValue[, fromIndex])…

    Continue ReadingTypeScript – String lastIndexOf()

    TypeScript – String indexOf()

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:2 Comments

    This method returns the index within the calling String object of the first occurrence of the specified value, starting the search at fromIndex or -1 if the value is not found. Syntax string.indexOf(searchValue[, fromIndex])…

    Continue ReadingTypeScript – String indexOf()

    TypeScript – String concat()

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    In this topic, we will discuss String concat() in Typescript. This method adds two or more strings and returns a new single string. Syntax string.concat(string2, string3[, ..., stringN]); Argument Details…

    Continue ReadingTypeScript – String concat()

    TypeScript – String charCodeAt()

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:1 Comment

    This method returns a number indicating the Unicode value of the character at the given index. Unicode code points range from 0 to 1,114,111. The first 128 Unicode code points…

    Continue ReadingTypeScript – String charCodeAt()

    TypeScript – String charAt()

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:1 Comment

    charAt() is a method that returns the character from the specified index. Characters in a string are indexed from left to right. The index of the first character is 0,…

    Continue ReadingTypeScript – String charAt()

    TypeScript – Prototype property

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    The prototype property allows you to add properties and methods to an object. Example function employee(id:number,name:string) { this.id = id this.name = name } var emp = new employee(123,"Smith") employee.prototype.email="smith@abc.com"…

    Continue ReadingTypeScript – Prototype property

    TypeScript – String Length Property

    • Post author:K Z
    • Post published:September 30, 2021
    • Post category:TypeScript
    • Post comments:0 Comments

    Returns the length of the string. Example var uname = new String("Hello World") console.log(uname) console.log("Length "+uname.length) // returns the total number of characters // including whitespace On compiling, it will…

    Continue ReadingTypeScript – String Length Property
    • Go to the previous page
    • 1
    • …
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • …
    • 183
    • Go to the next page
    Copyright - OceanWP Theme by OceanWP