博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
每日算法1——字符串翻转
阅读量:5826 次
发布时间:2019-06-18

本文共 767 字,大约阅读时间需要 2 分钟。

题目:翻转字符串

目标:

'hello' ——> 'olleh'

思路:

把字符串转化成数组,再借助数组的reverse方法翻转数组顺序,然后把数组转化成字符串。

代码:

function reverseString(str) {    str = str.split('').reverse().join('')    return str;}reverseString("hello");     // olleh

拓展:

常用的字符串方法charAt(num)         // 得到指定索引位置的单字符charCodeAt(num)     // 得到指定索引位置字符的Unicode值 (ascii为其子集)concat(str01,str02) // 连接俩字符~indexOf("str")      // 取str第一次出现的索引lastIndexOf("str")  // 取str最后一次出现的索引replace("oldStr", "newStr") // 找到oldStr替换为newStrslice( start , end ) // 其对象可以是字符串or数组 , 记得其范围不包括end

substr(start,length)//从索引start开始取length个字符 , length不可小于0否则返回空字符串

常用的数组方法pop()         // 删除最后一项shift()       // 删除第一项push()        // 增加到最后unshift()     // 增加到最前indexOf()     // 数组元素索引slice()       // 截取(切片)数组 得到截取的数组concat()      // 数组合并

reverse() // 数组翻转

f4ea0c041d23a65cfce6c745ad061385f2a07fe5

转载地址:http://ejpdx.baihongyu.com/

你可能感兴趣的文章
ubuntu 修改hostname
查看>>
sql 内联,左联,右联,全联
查看>>
C++关于字符串的处理
查看>>
6、Web Service-拦截器
查看>>
Flask 源码流程,上下文管理
查看>>
stream classdesc serialVersionUID = -7218828885279815404, local class serialVersionUID = 1.
查看>>
ZAB与Paxos算法的联系与区别
查看>>
Breaking parallel loops in .NET C# using the Stop method z
查看>>
修改故障转移群集心跳时间
查看>>
[轉]redis;mongodb;memcache三者的性能比較
查看>>
微软职位内部推荐-Sr DEV
查看>>
让你的WPF程序在Win7下呈现Win8风格主题
查看>>
802.11 学习笔记
查看>>
Leetcode-Database-176-Second Highest Salary-Easy(转)
查看>>
构建Docker Compose服务堆栈
查看>>
最小角回归 LARS算法包的用法以及模型参数的选择(R语言 )
查看>>
Hadoop生态圈-Kafka常用命令总结
查看>>
如何基于Redis Replication设计并实现Redis-replicator?
查看>>
浮点数内存如何存储的
查看>>
贪吃蛇
查看>>