2 Star 2 Fork 0

hepc/xmind_to_jira

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
utils.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
何鹏翀 提交于 2021-06-14 20:06 . 提交代码
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Project :jira
# @Author : hpc
# @File : utils.py
# @Time : 2021/6/14 3:35 下午
class Utils(object):
@staticmethod
def handle_colon(content, word):
"""处理冒号
:param content:
:param word:
:return:
"""
# 英文:
if content.find('{}:'.format(word)) != -1:
symbol = ':'
# 中文:
elif content.find('{}:'.format(word)) != -1:
symbol = ':'
else:
symbol = ''
data = content.split('{}{}'.format(word, symbol))[1]
return data
@classmethod
def key_word(cls, case_content):
"""处理关键词
:param case_content:
:return:
"""
# 用例库名称或者用例名称
case_title = case_content.split('-')[0]
key_word = story = ''
for filed in case_content.split('-')[1:]:
if filed.find('关键词') != -1:
key_word = cls.handle_colon(filed, '关键词')
if filed.find('需求') != -1:
story = cls.handle_colon(filed, '需求')
return case_title, key_word, story
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/he-pengzhen/xmind_to_jira.git
[email protected]:he-pengzhen/xmind_to_jira.git
he-pengzhen
xmind_to_jira
xmind_to_jira
master

搜索帮助