代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Ruby
】
统计字母出现的次数
作者:
雷霆
/ 发布于
2016/8/16
/
646
#Counts the number of times a 'letter' appears in a 'phrase' def CountLetterOccurrence(letter, phrase, matchCase) # Gets the length of the phrase index = phrase.length # Splits the string into an array getting all of the characters from the phrase array = phrase.split(//) # Placeholder for how many letters that we find a match to count = 0 # Loop through the array array.each do |character| # If we care about the letter CAsINg if matchCase == true # If the current character is the letter we are trying to find if character == letter # Add 1 to the count count = count + 1 # Exit the if statement end # If we do not care about the word CAsINg else # If the current character is the letter we are trying to find if character.downcase == letter.downcase # Add 1 to the count count = count + 1 # Exit the if statement end # Exit the if statement end # Exit the loop end # Return the number of letters matched return count # Exit the method end
试试其它关键字
同语言下
.
改变 SSH 上的当前目录
.
列表 SSH 服务器上的文件
.
查询域名映射的所有IP地址
.
解析域名对应的 IP 地址
.
查询域名的 MX 记录
.
Ruby 使用 HTTP 代理的例子
.
调用远程对象
.
多次调用远程对象的方法
.
发起 HTTPS 请求
.
获取 HTTP 回应的编码和内容
可能有用的
.
改变 SSH 上的当前目录
.
列表 SSH 服务器上的文件
.
查询域名映射的所有IP地址
.
解析域名对应的 IP 地址
.
查询域名的 MX 记录
.
Ruby 使用 HTTP 代理的例子
.
调用远程对象
.
多次调用远程对象的方法
.
发起 HTTPS 请求
.
获取 HTTP 回应的编码和内容
雷霆
贡献的其它代码
(
16
)
.
比较两个图片的相似度
.
a表记录不在b 表中的内容
.
按照某个键值对二维数组进行排序
.
使用Linq进行包含IN的子查询并按指定字段分组统计
.
jQuery实现MD5加密
.
统计字母出现的次数
.
三角形列表符号
.
转成大写金额
.
一个简单的HTTP服务器
.
检查一个元素是否在数组中
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3