码迷,mamicode.com
首页 > 其他好文 > 详细

字符串翻转

时间:2020-02-02 23:17:35      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:code   方法   ring   保留   字符串分割   正则   asc   eve   空字符串   

1.翻转字符串

var str = "smile at life";
console.log(str.split(" ").reverse().join(" "))//life at smile  
console.log(str.split("").reverse().join(""))//efil ta elims  这种方法是错误的,所以记住要使用上面一种形式
  • join() 方法用于把数组中的所有元素放入一个字符串。元素是通过指定的分隔符进行分隔的。

  • split()

    • split() 方法用于把一个字符串分割成字符串数组。

    • 两个参数,第一个是以什么元素进行分割,第二个是保留的

    • 如果把空字符串 ("") 用作 separator,那么 stringObject 中的每个字符之间都会被分割。

    • var str1="How are you doing today?"
      document.write(str1.split(" ") + "<br />")//How,are,you,doing,today?
      document.write(str1.split("") + "<br />")//H,o,w, ,a,r,e, ,y,o,u, ,d,o,i,n,g, ,t,o,d,a,y,?
      document.write(str1.split(" ",3))//How,are,you

2.替换空格

var str = "smile at life";
//方法一: 先转成字符数组,再把数组中的所有字符放入一个字符串
console.log(str.split(" ").join("%20"))//smile%20at%20life
//方法二: 使用正则替换
console.log(str.replace(/\s/g,'%20'))//smile%20at%20life

字符串翻转

标签:code   方法   ring   保留   字符串分割   正则   asc   eve   空字符串   

原文地址:https://www.cnblogs.com/zhoujingguoguo/p/12254219.html

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