本文簡要介紹ruby語言中 Abbrev.abbrev
的用法。
用法
abbrev(words, pattern = nil)
給定一組字符串,計算這些字符串的明確縮寫集,並返回一個哈希,其中鍵是所有可能的縮寫,值是完整的字符串。
因此,給定words
是“car” 和“cone”,指向“car” 的鍵將是“ca” 和“car”,而指向“cone” 的鍵將是“co”, “con” 和“cone”。
require 'abbrev'
Abbrev.abbrev(%w{ car cone })
#=> {"ca"=>"car", "con"=>"cone", "co"=>"cone", "car"=>"car", "cone"=>"cone"}
可選的pattern
參數是模式或字符串。隻有與模式匹配或以字符串開頭的輸入字符串才會包含在輸出哈希中。
Abbrev.abbrev(%w{car box cone crab}, /b/)
#=> {"box"=>"box", "bo"=>"box", "b"=>"box", "crab" => "crab"}
Abbrev.abbrev(%w{car box cone}, 'ca')
#=> {"car"=>"car", "ca"=>"car"}
相關用法
- Ruby Abbrev模塊用法及代碼示例
- Ruby AbstractSyntaxTree.of用法及代碼示例
- Ruby AbstractSyntaxTree.parse_file用法及代碼示例
- Ruby AbstractSyntaxTree.parse用法及代碼示例
- Ruby Array.push用法及代碼示例
- Ruby Array.hash用法及代碼示例
- Ruby ARGF.path用法及代碼示例
- Ruby Addrinfo.ip_address用法及代碼示例
- Ruby Array permutation()用法及代碼示例
- Ruby Array.to_a用法及代碼示例
- Ruby Array.to_h用法及代碼示例
- Ruby Array.to_s用法及代碼示例
- Ruby Array class fill()用法及代碼示例
- Ruby Array.array + other_array用法及代碼示例
- Ruby Array product()用法及代碼示例
- Ruby Array zip()用法及代碼示例
- Ruby Array concat()用法及代碼示例
- Ruby Array類用法及代碼示例
- Ruby Addrinfo.connect_from用法及代碼示例
- Ruby Array.take()用法及代碼示例
- Ruby Array.reject!用法及代碼示例
- Ruby ASN1Data.new用法及代碼示例
- Ruby Array.flatten!用法及代碼示例
- Ruby Array.reject用法及代碼示例
- Ruby Array compact!()用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Abbrev.abbrev。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。