TypeScript算法基础——TS字符串的常用操作总结:substring、indexOf、slice、replace. . .

news/2024/11/19 22:40:15/

在TypeScript中,字符串的常用操作可以使用以下方法来实现:

常用

  1. substring(startIndex: number, endIndex?: number): string:返回从startIndex开始到endIndex(不包括)之间的子字符串。如果省略endIndex,则返回从startIndex到字符串末尾的子字符串。
const str = "Hello, World!";
const subStr = str.substring(7, 12); // "World"
  1. indexOf(searchValue: string, startIndex?: number): number:返回searchValue在字符串中第一次出现的索引位置。如果找不到该值,则返回-1。可以使用startIndex参数指定搜索的起始位置。
const str = "Hello, World!";
const index = str.indexOf("World"); // 7
  1. slice(startIndex: number, endIndex?: number): string:返回从startIndex开始到endIndex(不包括)之间的子字符串。如果省略endIndex,则返回从startIndex到字符串末尾的子字符串。与substring()方法类似,但slice()方法也支持负数索引。
const str = "Hello, World!";
const subStr = str.slice(7, 12); // "World"
  1. replace(searchValue: string | RegExp, replaceValue: string): string:将字符串中的searchValue替换为replaceValue,并返回新的字符串。searchValue可以是一个字符串或正则表达式。
const str = "Hello, World!";
const newStr = str.replace("World", "Universe"); // "Hello, Universe!"
  1. toUpperCase(): string:将字符串转换为大写。
const str = "Hello, World!";
const upperCaseStr = str.toUpperCase(); // "HELLO, WORLD!"
  1. toLowerCase(): string:将字符串转换为小写。
const str = "Hello, World!";
const lowerCaseStr = str.toLowerCase(); // "hello, world!"
  1. trim(): string:去除字符串两端的空格。
const str = "   Hello, World!   ";
const trimmedStr = str.trim(); // "Hello, World!"

这些方法是字符串处理中常用的操作,可以根据具体的需求选择适合的方法来处理字符串。需要注意的是,这些方法都返回新的字符串,原始字符串并不会被修改。

查找字符串

在JavaScript/TypeScript中,有多种方法可以用于查找字符串。以下是几种常见的方法:

  1. indexOf(searchValue: string, startIndex?: number): number:返回searchValue在字符串中第一次出现的索引位置。如果找不到该值,则返回-1。可以使用startIndex参数指定搜索的起始位置。
const str = "Hello, World!";
const index = str.indexOf("World"); // 7
  1. lastIndexOf(searchValue: string, startIndex?: number): number:返回searchValue在字符串中最后一次出现的索引位置。如果找不到该值,则返回-1。可以使用startIndex参数指定搜索的起始位置。
const str = "Hello, World!";
const index = str.lastIndexOf("o"); // 8
  1. search(regexp: string | RegExp): number:使用正则表达式搜索字符串,并返回第一个匹配的索引位置。如果找不到匹配项,则返回-1。
const str = "Hello, World!";
const index = str.search(/World/); // 7
  1. includes(searchValue: string, startIndex?: number): boolean:判断字符串中是否包含searchValue。如果包含,则返回true,否则返回false。可以使用startIndex参数指定搜索的起始位置。
const str = "Hello, World!";
const includes = str.includes("World"); // true
  1. startsWith(searchValue: string, startIndex?: number): boolean:判断字符串是否以searchValue开头。如果是,则返回true,否则返回false。可以使用startIndex参数指定搜索的起始位置。
const str = "Hello, World!";
const startsWith = str.startsWith("Hello"); // true
  1. endsWith(searchValue: string, endIndex?: number): boolean:判断字符串是否以searchValue结尾。如果是,则返回true,否则返回false。可以使用endIndex参数指定搜索的结束位置。
const str = "Hello, World!";
const endsWith = str.endsWith("World"); // false

以上是一些常用的字符串查找方法,根据具体的需求选择适合的方法来查找字符串。需要注意的是,这些方法都返回布尔值或索引位置,而不是具体的匹配字符串。

提取字符串

在JavaScript/TypeScript中,有多种方法可以用于提取字符串的子串。以下是几种常见的方法:

  1. substring(startIndex: number, endIndex?: number): string:返回从startIndex开始到endIndex(不包括)之间的子字符串。如果省略endIndex,则返回从startIndex到字符串末尾的子字符串。与slice()方法类似,但substring()方法不支持负数索引。
const str = "Hello, World!";
const subStr = str.substring(7, 12); // "World"
  1. substr(startIndex: number, length?: number): string:返回从startIndex开始,长度为length的子字符串。如果省略length,则返回从startIndex到字符串末尾的子字符串。
const str = "Hello, World!";
const subStr = str.substr(7, 5); // "World"
  1. slice(startIndex: number, endIndex?: number): string:返回从startIndex开始到endIndex(不包括)之间的子字符串。如果省略endIndex,则返回从startIndex到字符串末尾的子字符串。与substring()方法类似,但slice()方法也支持负数索引。
const str = "Hello, World!";
const subStr = str.slice(7, 12); // "World"
  1. split(separator: string | RegExp, limit?: number): string[]:将字符串分割成子字符串数组,根据指定的分隔符separator进行分割。可以使用limit参数限制返回的子字符串数量。
const str = "Hello, World!";
const parts = str.split(","); // ["Hello", " World!"]

这些方法可以根据具体的需求选择适合的方法来提取字符串的子串。需要注意的是,这些方法返回新的字符串或字符串数组,原始字符串并不会被修改。


http://www.ppmy.cn/news/999977.html

相关文章

【树形DP+换根思想】2022牛客多校加赛 H

登录—专业IT笔试面试备考平台_牛客网 题意: 思路: 这个虽然是树形DP,却用了换根的思想.... 首先,后缀0的个数可以转化成min(cnt2,cnt5),其中cnt2为2的因子个数,cnt5为5的因子个数 然后进行DP 设dp[u]…

宋浩概率论笔记(二)随机变量

本章节内容较多,是概率论与数理统计中最为重要的章节,对于概率密度和分布函数的理解与计算要牢牢掌握,才能在后期的学习中更得心应手。

怎么才能提升自己工作能力?

表现最好的员工通常是获得加薪和工作晋升的人。您可以采取某些措施来提高您的工作绩效,并帮助您的主管将您视为他们最好的员工之一。在本文中,我们列出了 12 个技巧,可以立即提高您的工作绩效。 什么是工作绩效? 工作绩效是指您…

雷达信号处理技术汇总

系列文章目录 《雷达简单介绍》 《信号类型(雷达)——雷达波形认识(一)》 《信号类型(雷达)——连续波雷达(二)》 《信号类型(雷达)——脉冲雷达&#xf…

分享:交流负载箱 0~9.999A 可调 步进1mA

前言 最近去客户那边,发现一个问题,他们的交流供电单元 测试很不方便。 需求 供电单元输出: AC220V 50HZ;漏电保护保护功能过载报警功能;超载保护功能; 总而言之,他们需要一台 交流的电子负…

Flask简介与基础入门

一、了解框架 Flask作为Web框架,它的作用主要是为了开发Web应用程序。那么我们首先来了解下Web应用程序。Web应用程序 (World Wide Web)诞生最初的目的,是为了利用互联网交流工作文档。 1、一切从客户端发起请求开始。 所有Flask程序都必须创建一个程序…

Python之pyinstaller打包exe填坑总结

一、起因 编写了一个提取图片中文字的python脚本,想传给同事使用,但是同事电脑上没有任何python环境,更没有安装python库,因此想到通过pyinstaller打包成exe程序传给同事使用,于是开始了不断地挖坑填坑之旅 import p…

【Uniapp 的APP热更新】

Uniapp 的APP热更新功能依赖于其打包工具 HBuilder,具体步骤如下: 1. 在 HBuilder 中构建并打包出应用程序 具体步骤: 1.点击发行,点击制作wgt包 2.根据需求修改文件储存路径和其他配置,点击确定 3.等待打包完成&a…