Languages
[Edit]
EN

TypeScript - find text in string

0 points
Created by:
Imaan-Morin
1009

In TypeScript it is possible to find text in string with String search method.

1. Overview

String search method works in following way:

  • as first argument takes regular expression
  • returns first text occurrance position,
  • returns -1 value if nothing found

2. String search method with regular expression example

2.1. With text argument 

const text: string = 'This is my text...';

const position1: number = text.search('is'); // be careful because of regex characters
const position2: number = text.search('\\bis\\b');

console.log(position1); // 2
console.log(position2); // 5

2.2. With object argument example

const text: string = 'This is my text...';
const position: number = text.search(/\bis\b/);

console.log(position); // 5

Alternative titles

  1. TypeScript - search string
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join