JS Note字符串截取

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS Note字符串截取相关的知识,希望对你有一定的参考价值。

Js中字符截取常用的三个函数:slice()、substring()、substr()。

slice():

slice(start,[end]) 

第一个参数代表开始位置,第二个参数代表结束位置的下一个位置。

 

substring():

substring(start,[end])

第一个参数代表开始位置,第二个参数代表结束位置的下一个位置。

 

substr():

substr(start,[length])

第一个参数代表开始位置,第二个参数代表截取的长度。

注:字符串都从0开始计起

 

Name: Ataw.Dev.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null

TrueName: Ataw.Dev.Core

VersionName: 1.0.0.0

if (config.Name) {

  this.TrueName = config.Name;

  this.VersionsName = config.Name;

  if (config.Name.length == 0) {
    this.NameIsNull = true;
  } else {
    this.TrueName = this.TrueName.substring(0, this.TrueName.lastIndexOf(‘,‘));
    this.TrueName = this.TrueName.substring(0, this.TrueName.lastIndexOf(‘,‘));
    this.TrueName = this.TrueName.substring(0, this.TrueName.lastIndexOf(‘,‘));
    this.VersionsName = this.VersionsName.substring(0, this.VersionsName.lastIndexOf(‘,‘));
    this.VersionsName = this.VersionsName.substring(0, this.VersionsName.lastIndexOf(‘,‘));
    this.VersionsName = this.VersionsName.substr(this.VersionsName.indexOf(‘,‘) + 1, 100);
    this.VersionsName = this.VersionsName.substr(9);
  }
} else {
  this.NameIsNull = true;
}

  

 

以上是关于JS Note字符串截取的主要内容,如果未能解决你的问题,请参考以下文章

js对时间截取前面部分

JS 截取字符串和字符串转数组,数组合并字符串等代码实例

js截取

php截取字符串时保持英文单词完整性的函数

JavaScript实用功能代码片段

JS 截取字符串和字符串转数组,数组合并字符串等代码实例