文章标签:String
找到 19 篇文档
- Web/JavaScript/Reference/Global_Objects/String String 全局对象是用来构造字符串的构造函数。
- Web/JavaScript/Reference/Global_Objects/String/concat concat() 方法将一个或多个字符串与原字符串连接合并,形成一个新的字符串并返回。
- Web/JavaScript/Reference/Global_Objects/String/endsWith endsWith() 方法用来判断当前字符串是否是以另外一个给定的子字符串“结尾”的,根据判断结果返回 true 或 false 。
- Web/JavaScript/Reference/Global_Objects/String/includes includes() 方法用于 判断一个字符串是否被包含在另一个字符串中,如果是返回 true,否则返回 false。
- Web/JavaScript/Reference/Global_Objects/String/indexOf indexOf() 方法返回指定值在字符串对象中首次出现的位置。从 fromIndex 位置开始查找,如果不存在,则返回 -1。
- Web/JavaScript/Reference/Global_Objects/String/length length 属性表示一个字符串的长度。
- Web/JavaScript/Reference/Global_Objects/String/normalize normalize() 方法会按照指定的一种 Unicode 正规形式将当前字符串正规化.
- Web/JavaScript/Reference/Global_Objects/String/prototype String.prototype 这个属性表示了 String 其原型对象。
- Web/JavaScript/Reference/Global_Objects/String/quote 将字符串中包含的特殊字符进行转义(反斜杠),然后在字符串两边各加上一个双引号( " )并返回,并不修改原字符串.
- Web/JavaScript/Reference/Global_Objects/String/raw String.raw() 是一个 模板字符串 的标签函数,它的作用类似于 Python 中的字符串前缀 r 和 C# 中的字符串前缀 @ ,是用来获取一个模板字符串的原始字面量值的。
- Web/JavaScript/Reference/Global_Objects/String/repeat repeat() 方法会构造并返回一个重复当前字符串若干次数的新字符串.
- Web/JavaScript/Reference/Global_Objects/String/replace replace() 方法使用一个替换值( replacement )替换掉一个匹配模式( pattern ...
- Web/JavaScript/Reference/Global_Objects/String/slice slice() 方法提取字符串中的一部分,并返回这个新的字符串。
- Web/JavaScript/Reference/Global_Objects/String/startsWith startsWith() 方法用来判断当前字符串是否是以另外一个给定的子字符串“开头”的,根据判断结果返回 true 或 false 。
- Web/JavaScript/Reference/Global_Objects/String/toLowerCase toLowerCase() 会将调用该方法的字符串值转为小写形式,并返回。
- Web/JavaScript/Reference/Global_Objects/String/toUpperCase toUpperCase() 将调用该方法的字符串值转换为大写形式,并返回。
- Web/JavaScript/Reference/Global_Objects/String/Trim trim() 方法会删除一个字符串两端的空白字符。在这个字符串里的空格包括所有的空格字符 (space, tab, no-break space 等)以及所有的行结束符(如 LF,CR)。
- Web/JavaScript/Reference/Global_Objects/String/TrimLeft 移除字符串左端的连续空白符.
- Web/JavaScript/Reference/Global_Objects/String/TrimRight 移除字符串右端的连续空白符.