theshy112 2022-09-18 17:37 采纳率: 100%
浏览 20
已结题

python多个字符的分隔

“Natural scene image classification is a very hot topic in the field of computer research, in which image feature extraction is the keypoint. As a texture descriptor of image low-level features, Local Binary Pattern (LBP)‘
找出B这段文字里的”of”, 逗号“,”,点句号”.”,“in”,“and”, “an”,“a”, “in”, “is”,“the”等字符,然后把这段话按这些字符分开

  • 写回答

1条回答 默认 最新

  • 天元浪子 优质创作者: python技术领域 2022-09-18 18:34
    关注
    import re
    p = re.compile(r'[,.]|\sof\s|\sis\s|\sin\s|\sand\s|\sa\s|\san\s|\sthe\s')
    s = 'Natural scene image classification is a very hot topic in the field of computer research, in which image feature extraction is the keypoint. As a texture descriptor of image low-level features, Local Binary Pattern (LBP)'
    p.split(s)
    ['Natural scene image classification', 'a very hot topic', 'the field', 'computer research', '', 'which image feature extraction', 'the keypoint', ' As', 'texture descriptor', 'image low-level features', ' Local Binary Pattern (LBP)']
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 10月2日
  • 已采纳回答 9月24日
  • 创建了问题 9月18日