扫描滑动窗口,查找字符串中字母的某些组合。计算出现次数。 Python

发布于 2024-12-21 02:07:55 字数 322 浏览 1 评论 0原文

如果您有一个序列并创建了一个窗口大小为 4 的列表。在每个窗口中您都在寻找特定的排列。

#Example:
count=0
test='abcdaecdagcd'
windows=['abcd','bcda','cdae','daec','aecd','ecda','cdag','dagc','agcd']

我正在寻找序列中 a-[b 或 e]-*-d 的特定主题,我想计算它出现的次数,

因此 'abcd' 和 'aecd' 可以工作,因为 'a-[b或 e]-(这个位置无关紧要)-d' 这将添加到计数 2,因此在函数执行之后,计数 = 2

If you have a sequence and you create a a list of window size 4. In each of those windows your looking for particular arrangement.

#Example:
count=0
test='abcdaecdagcd'
windows=['abcd','bcda','cdae','daec','aecd','ecda','cdag','dagc','agcd']

I'm looking for a particular motif which is a-[b or e]-*-d within the sequence and I want to count how many times it occurs

so 'abcd' and 'aecd' would work because 'a-[b or e]-(this position doesn't matter)-d' which would add to the count 2 so after the function went through it would be count = 2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

林空鹿饮溪 2024-12-28 02:07:55

字符串“a(b or e)*d”不能以字符串“a(b or e)*d”开头。因此,长字符串中存在的此类字符串不能重叠,然后可以使用正则表达式来查找您需要的

import re

ss = 'abcdaecdagcd'

regx = re.compile('a[be].d')

print regx.findall(ss)
print len(regx.findall(ss))

内容:

['abcd', 'aecd']
2

A string 'a(b or e)*d' can't begin in a string 'a(b or e)*d'. Hence strings of this kind present in a long string can't overlap, and then a regex is usable to find what you need:

import re

ss = 'abcdaecdagcd'

regx = re.compile('a[be].d')

print regx.findall(ss)
print len(regx.findall(ss))

result

['abcd', 'aecd']
2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文