S
Sesquipedalian Sam
I have a large table (up to several thousand rows, 7 columns).
One of the columns (column 4) contains codes for parts of speech from
a corpus tagger (scanner/parser). The tagger has ~150 tags: 31 verb
tags, 22 noun tags, 19 pronoun tags, etc.
The tags for each major part of speech (verb, noun, adjective, etc.)
all start with the same letter:
The verb tags all start with "v" (vv0, vvi, vv0_nn1, ...)
The noun tags all start with "n" (nn0, nn1, nn1_np1, ...)
I would like to convert each of the tags to just the first letter. Any
string in that column that startes with "v" would become just "v".
Can I use Replace to do that somehow?
If not, could someone get me started with the basic of a macro?
Thanks
One of the columns (column 4) contains codes for parts of speech from
a corpus tagger (scanner/parser). The tagger has ~150 tags: 31 verb
tags, 22 noun tags, 19 pronoun tags, etc.
The tags for each major part of speech (verb, noun, adjective, etc.)
all start with the same letter:
The verb tags all start with "v" (vv0, vvi, vv0_nn1, ...)
The noun tags all start with "n" (nn0, nn1, nn1_np1, ...)
I would like to convert each of the tags to just the first letter. Any
string in that column that startes with "v" would become just "v".
Can I use Replace to do that somehow?
If not, could someone get me started with the basic of a macro?
Thanks