Questions tagged «overlapping»

3
Python正则表达式找到所有重叠的匹配项?
我正在尝试在Python 2.6中使用re查找更大系列的数字中的每10位数字系列。 我很容易就能抓住不重叠的比赛,但我希望数字系列中的每场比赛。例如。 在“ 123456789123456789”中 我应该得到以下列表: [1234567891,2345678912,3456789123,4567891234,5678912345,6789123456,7891234567,8912345678,9123456789] 我已经找到了对“超前”的引用,但是我所看到的示例仅显示了成对的数字,而不是更大的分组,而且我无法将其转换为两位数以外的数字。

4
堆叠的半透明盒子的颜色取决于订单?
为什么两个堆叠的半透明盒子的最终颜色取决于顺序? 如何使两种情况下的颜色相同? .a { background-color: rgba(255, 0, 0, 0.5) } .b { background-color: rgba(0, 0, 255, 0.5) } <span class="a"><span class="b"> Color 1</span></span> <span class="b"><span class="a">Different Color 2</span></span> 运行代码段隐藏结果展开摘要

4
如何使用正则表达式查找重叠的匹配项?
>>> match = re.findall(r'\w\w', 'hello') >>> print match ['he', 'll'] 由于\ w \ w表示两个字符,因此应使用'he'和'll'。但是,为什么“ el”和“ lo”与正则表达式不匹配? >>> match1 = re.findall(r'el', 'hello') >>> print match1 ['el'] >>>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.