Commit 803816fc by Sartika Aritonang

Upload New File

parent 8df73076
import re
class DisambiguatorPrefixRule2(object):
"""Disambiguate Prefix Rule 2
Rule 2 : berCAP -> ber-CAP where C != 'r' AND P != 'er'
"""
def disambiguate(self, word):
"""Disambiguate Prefix Rule 2
Rule 2 : berCAP -> ber-CAP where C != 'r' AND P != 'er'
"""
matches = re.match(r'^ber([bcdfghjklmnpqrstvwxyz])([a-z])(.*)', word)
if matches:
if re.match(r'^er(.*)$', matches.group(3)):
return
return matches.group(1) + matches.group(2) + matches.group(3)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment