レットを単語全体に参加しますは私がこの文章を持っていると言うのPython
import re
pattern = re.compile(r"\w+\/Name)
sent = sentence.split()
for i , w in sent:
if pattern.match(sent[i]) != None:
if pattern.match(sent[i+1]) != None:
#....
#join sent[i] and sent[i+1] element
#....
を考えていますか?あなたはすべてのテキストに直接reを使用できませんか? – furas
私は知っている、私はちょうど結合する別の方法を使用しています。まだ全体のテキストを使用してタグで結合する方法を知らない – Fregy