removeDictionaryEntry.Rd
This function removes an existing entry from the given dictionary.
removeDictionaryEntry(
labbcat.url,
manager.id,
dictionary.id,
key,
entry = NULL
)
URL to the LaBB-CAT instance
The layer manager ID of the dictionary, as returned by getDictionaries
The ID of the dictionary, as returned by getDictionaries
The key (word) in the dictionary to remove an entry for.
The value (definition) for the given key, or NULL to remove all entries for the key.
NULL if the entry was removed, or a list of error messages if not.
You must have edit privileges in LaBB-CAT in order to be able to use this function.
if (FALSE) {
## Remove a pronuciation of the word "robert" from the CELEX wordform pronunciation dictionary
removeDictionaryEntry(labbcat.url, "CELEX-EN", "Phonology (wordform)", "robert", "'rQ-bErt")
}