Lookup IPA symbols with phonetic features or X-SAMPA

searchIPA(x = NULL, search = c("feature", "xsampa"))

Arguments

x

Character. A (partial) term of the features of an IPA symbol or the (partial) X-SAMPA symbol corresponding to an IPA symbol. Defaults to NULL, which returns all IPA symbols with corresponding features and X-SAMPA symbols.

search

Character. Search mode, either feature or xsampa.

Value

A data frame with 3 rows.

Examples

# NOT RUN {
# Check all IPA symbols
searchIPA()

# Search with feature
searchIPA("bilabial", "feature")

# Search with X-SAMPA
searchIPA("_h", "xsampa")

# }