Singleton Consonants
All Singleton Consonants
The phonex expression for singleton consonants has four parts:
- Standalone consonants
(?<^\s?)(\c)$- Initial singleton consonants
(?<^\s?)(\c)(?>\v)- Medial singleton consonants
(?<\v\s?)(\c)(?>\s?\v)- Final singleton consonants
(?<\v)(\c)$Use the double pipe (i.e., ||) operator to combine the expressions:
(?<^\s?)(\c)$ || (?<^\s?)(\c)(?>\v) || (?<\v\s?)(\c)(?>\s?\v) || (?<\v)(\c)$Singleton Onsets
- Standalone onsets including onsets of empty headed syllables.
(?<^\s?)(\c:sctype("Onset|OEHS"))$- All other singleton onsets
(?<\S)(\c:O)(?>\v)Combined:
(?<^\s?)(\c:sctype("Onset|OEHS"))$ || (?<\S)(\c:O)(?>\v)Singleton Codas
- Standalone codas
(?<^\s?)(\c:C)$- All other singleton codas
(?<\v)(\c:C)(?>\S)Combined:
(?<^\s?)(\c:C)$ || (?<\v)(\c:C)(?>\S)