- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我在为其中一个 codewars Katas ( https://www.codewars.com/kata/parseint-reloaded/train/ruby ) 编写正则表达式时遇到了一些问题,我希望我能在这里指出正确的方向。我需要一个正则表达式,可以匹配从 1 到 999 的任何人类可读的英文数字字符串。例如:“一”、“三百二”、“五百九十七”等。
当我使用正则表达式进行匹配时,我希望匹配项出现在一致的反向引用位置。到目前为止,我所写的内容在大多数情况下或多或少都有效,但反向引用无处不在。有时当我匹配“百”时。它是 3 美元,有时是 6 美元,这使得提取数字的逻辑变得复杂。其他时候,同一个字符串出现两次。有什么方法可以挽救它并使它变得更好,还是我应该硬着头皮为不同的情况编写多个正则表达式?
regex = "^((.+?)( hundred)? )?((.+)[ -])?(.+?)$"
test_cases = [
'seven hundred ninety six',
'six hundred twenty-two',
'one hundred',
'two hundred one',
'sixty six',
'one',
'sixty'
]
test_cases.each do |test_case|
puts test_case.match(regex).to_a.inspect
end
["seven hundred ninety six", "seven hundred ", "seven", " hundred", "ninety ", "ninety", "six"]
["six hundred twenty-two", "six hundred ", "six", " hundred", "twenty-", "twenty", "two"]
["one hundred", "one ", "one", nil, nil, nil, "hundred"]
["two hundred one", "two hundred ", "two", " hundred", nil, nil, "one"]
["sixty six", "sixty ", "sixty", nil, nil, nil, "six"]
["one", nil, nil, nil, nil, nil, "one"]
["sixty", nil, nil, nil, nil, nil, "sixty"]
最佳答案
首先,构造将用于将字符串转换为整数的散列,并使用这些散列的键来定义可能出现在字符串中的单词以插入到正则表达式中。
units_to_digit = %w| one two three four five six seven eight nine |.
zip((1..9).to_a).to_h
#=> {"one"=>1, "two"=>2, "three"=>3, "four"=>4, "five"=>5, "six"=>6, "seven"=>7,
# "eight"=>8, "nine"=>9}
units = units_to_digit.keys.join('|')
#=> "one|two|three|four|five|six|seven|eight|nine"
tens_to_digit = %w| twenty thirty forty fifty sixty seventy eighty ninety |.
zip((2..9).to_a).to_h
#=> {"twenty"=>2, "thirty"=>3, "forty"=>4, "fifty"=>5, "sixty"=>6, "seventy"=>7,
# "eighty"=>8, "ninety"=>9}
tens = tens_to_digit.keys.join('|')
#=> "twenty|thirty|forty|fifty|sixty|seventy|eighty|ninety"
teens_to_digit =
%w| ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen |.
zip((10..19).to_a).to_h
#=> {"ten"=>10, "eleven"=>11, "twelve"=>12, "thirteen"=>13, "fourteen"=>14,
# "fifteen"=>15, "sixteen"=>16, "seventeen"=>17, "eighteen"=>18, "nineteen"=>19}
teens = teens_to_digit.keys.join('|')
#=> "ten|eleven|twelve|thirteen|fourteen|fifteen|sixteen|seventeen|eighteen|nineteen"
(也可以编写 units = Regexp.union(units_to_digit.keys)
和类似的 tens
和 teens
。参见 Regexp::union .)
接下来,使用命名捕获组构造一个正则表达式。 (出于文档目的,我使用了自由间距模式。如果不使用自由间距模式,则包含单个空格 ([ ]
) 的字符类可以各自替换为一个空格。)
regex = /
\A # match beginning of string
(?: # begin a non-capture group
(?<nbr_hundreds>#{units}) # match nbr of hundreds, named 'nbr_hundreds'
[ ]hundred # match ' hundred'
)? # close non-capture group and make optional
[ ]? # optionally match a space
(?: # begin non-capture group
(?: # begin a non-capture group
(?<tens>#{tens}) # match 'twenty' to 'ninety', named 'tens'
(?: # begin non-capture group
[ -] # match a space or hyphen
(?<tens_units>#{units}) # match units, named 'tens_units'
)? # close non-capture group and make optional
) # close non-capture group
| # or
(?<units>#{units}) # match '1-9', named 'units'
| # or
(?<teens>#{teens}) # match 'ten', 'eleven',...'nineteen'
)? # close non-capture group and make optional
\z # match end of string
/x # free-spacing regex definition mode
#=> /
# \A
# (?:
# (?<nbr_hundreds>one|two|three|four|five|six|seven|eight|nine)
# [ ]hundred
# )?
# [ ]?
# (?:
# (?:
# (?<tens>twenty|thirty|forty|fifty|sixty|seventy|eighty|ninety)
# (?:
# [ -]
# (?<tens_units>one|two|three|four|five|six|seven|eight|nine)
# )?
# )
# |
# (?<units>one|two|three|four|five|six|seven|eight|nine)
# |
# (?<teens>ten|eleven|twelve|thirteen|fourteen|fifteen|sixteen|seventeen|eighteen|nineteen)
# )?
# \z
# /x
str.match(regex)
将返回一个 MatchData
对象 m
。捕获组的值为 m[:nbr_hundreds]
、m[:tens]
、m[:tens_units]
、 m[:units]
和 m[:teens]
。当没有匹配项时,每个都将等于 nil
。 (例如,当 str = "one"
时,m[:nbr_hundreds]
将等于 nil
。)将这些 nils 简单地视为零。一种简单的方法是将键值对 nil=>0
添加到每个散列 units_to_digit
、tens_to_digit
和 teens_to_digit
:
units_to_digit[nil] = 0
tens_to_digit[nil] = 0
teens_to_digit[nil] = 0
现在构造一个将 MatchData
对象转换为整数的方法。
def match_data_to_integer(units_to_digit, tens_to_digit, teens_to_digit, m)
100 * units_to_digit[m[:nbr_hundreds]] +
10 * tens_to_digit[m[:tens]] +
teens_to_digit[m[:teens]] +
units_to_digit[m[:tens_units]] +
units_to_digit[m[:units]]
end
现在让我们针对一些字符串进行测试。
test_cases = [
'seven hundred ninety six',
'six hundred twenty-two',
'one hundred',
'two hundred one',
'sixty six',
'one',
'sixty'
]
test_cases.each do |test_case|
m = test_case.match(regex)
n = match_data_to_integer(units_to_digit, tens_to_digit, teens_to_digit, m)
puts "#{test_case} -> #{n}"
end
打印
seven hundred ninety six -> 796
six hundred twenty-two -> 622
one hundred -> 100
two hundred one -> 201
sixty six -> 66
one -> 1
sixty -> 60
关于ruby - 正则表达式匹配人类可读的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52211122/
使用sed和/或awk,仅在行包含字符串“ foo”并且行之前和之后的行分别包含字符串“ bar”和“ baz”时,我才希望删除行。 因此,对于此输入: blah blah foo blah bar
例如: S1: "some filename contains few words.txt" S2:“一些文件名包含几个单词 - draft.txt” S3:“一些文件名包含几个单词 - 另一个 dr
我正在尝试处理一些非常困惑的数据。我需要通过样本 ID 合并两个包含不同类型数据的大数据框。问题是一张表的样本 ID 有许多不同的格式,但大多数都包含用于匹配其 ID 中某处所需的 ID 字符串,例如
我想在匹配特定屏幕尺寸时显示特定图像。在这种情况下,对于 Bootstrap ,我使用 col-xx-## 作为我的选择。但似乎它并没有真正按照我认为应该的方式工作。 基本思路,我想显示一种全屏图像,
出于某种原因,这条规则 RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*
我想做类似的东西(Nemerle 语法) def something = match(STT) | 1 with st= "Summ" | 2 with st= "AVG" =>
假设这是我的代码 var str="abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=1234587;abc=19855284;abc=123
我怎样才能得到这个字符串的数字:'(31.5393701, -82.46235569999999)' 我已经在尝试了,但这离解决方案还很远:) text.match(/\((\d+),(\d+)\)/
如何去除输出中的逗号 (,)?有没有更好的方法从字符串或句子中搜索 url。 alert(" http://www.cnn.com df".match(/https?:\/\/([-\w\.]+
a = ('one', 'two') b = ('ten', 'ten') z = [('four', 'five', 'six'), ('one', 'two', 'twenty')] 我正在尝试
我已经编写了以下代码,我希望用它来查找从第 21 列到另一张表中最后一行的值,并根据这张表中 A 列和另一张表中 B 列中的值将它们返回到这张表床单。 当我使用下面的代码时,我得到一个工作表错误。你能
我在以下结构中有两列 A B 1 49 4922039670 我已经能够评估 =LEN(A1)如2 , =LEFT(B1,2)如49 , 和 =LEFT(B1,LEN(A1)
我有一个文件,其中一行可以以 + 开头, -或 * .在其中一些行之间可以有以字母或数字(一般文本)开头的行(也包含这些字符,但不在第 1 列中!)。 知道这一点,设置匹配和突出显示机制的最简单方法是
我有一个数据字段文件,其中可能包含注释,如下所示: id, data, data, data 101 a, b, c 102 d, e, f 103 g, h, i // has to do with
我有以下模式:/^\/(?P.+)$/匹配:/url . 我的问题是它也匹配 /url/page ,如何忽略/在这个正则表达式中? 该模式应该: 模式匹配:/url 模式不匹配:/url/page 提
我有一个非常庞大且复杂的数据集,其中包含许多对公司的观察。公司的一些观察是多余的,我需要制作一个键来将多余的观察映射到一个单独的观察。然而,判断他们是否真的代表同一家公司的唯一方法是通过各种变量的相似
我有以下 XML A B C 我想查找 if not(exists(//Record/subRecord
我制作了一个正则表达式来验证潜在的比特币地址,现在当我单击报价按钮时,我希望根据正则表达式检查表单中输入的值,但它不起作用。 https://jsfiddle.net/arkqdc8a/5/ var
我有一些 MS Word 文档,我已将其全部内容转移到 SQL 表中。 内容包含多个方括号和大括号,例如 [{a} as at [b],] {c,} {d,} etc 我需要进行检查以确保括号平衡/匹
我正在使用 Node.js 从 XML 文件读取数据。但是当我尝试将文件中的数据与文字进行比较时,它不匹配,即使它看起来相同: const parser: xml2js.Parser = new
我是一名优秀的程序员,十分优秀!