UNKNOWN
Project description
The purpose of the module Match is to get the offsets (as well as the string between those offsets, for debugging) of a cleaned-up, tokenized string from its original, untokenized source. “Big deal,” you might say, but this is actually a pretty difficult task if the original text is sufficiently messy, not to mention rife with Unicode characters.
Consider some text, stored in a variable original_text, like:
I am writing a letter ! Sometimes,I forget to put spaces (and do weird stuff with punctuation) ? J’aurai une pomme, s’il vous plâit !
This will/should/might be properly tokenized as:
- [[u’I’, u’am’, u’writing’, u’a’, u’letter’, u’!’],
[u’Sometimes’, u’,’, u’I’, u’forget’, u’to’, u’put’, u’spaces’, u’-LRB-’, u’and’, u’do’, u’weird’, u’stuff’, u’with’, u’punctuation’, u’-RRB-’, u’?’], [u”J’aurai”, u’une’, u’pomme’, u’,’, u”s’il”, u’vous’, u’plxe2it’, u’!’]]
Now:
In [22]: Match.match(original_text, [u’-LRB-’, u’and’, u’do’, u’weird’, u’stuff’, u’with’, u’punctuation’, u’-RRB-‘]) Out[22]: [(60, 97, u’(and do weird stuff with punctuation)’)]
In [23]: Match.match(original_text, [u’I’, u’am’, u’writing’, u’a’, u’letter’, u’!’]) Out[23]: [(0, 25, u’I am writing a letter !’)]
In [24]: Match.match(original_text, [u”s’il”, u’vous’, u’plxe2it’, u’!’]) Out[24]: [(121, 138, u”s’il vous plxe2it !”)]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file match-0.2.2.tar.gz
.
File metadata
- Download URL: match-0.2.2.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52f61683fb76343a6e2a61fc402cad50ba056a9ca1fd6a0792a19d4b339cfc44 |
|
MD5 | cc66e80944ea8c3b0df8ae3f0be293c3 |
|
BLAKE2b-256 | 56a27bacc7bdcffabff610c50862aeb33921a25a00f912003f29e9d0a71bb5ba |