码迷,mamicode.com
首页 > Web开发 > 详细

【JS Note】字符串截取

时间:2016-09-23 16:33:25      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

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】字符串截取

标签:

原文地址:http://www.cnblogs.com/yimi8426/p/5900359.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!