Automate iTunes for chorus repetitions of L2 pronunciation practice
Using AppleScript to automate chorus repetition practice
Since one of the cornerstones of my approach to learning the Russian language has been to track how many words I’ve learned and their frequencies, I was intrigued by reading the following statistics today:
In other words, if you learn the first 4000 words of a language, you’ll be able to understand nearly everything.
How to identify Russian letters in a string? The short answer is: [А-Яа-яЁё]
but depending on your regex flavor, [\p{Cyrillic}]
might work. What in the word does this regex mean? It’s just like [A-Za-z]
with a twist. The Ёё
at the end adds support for ё (“yo”) which is in the Latin group of characters.
See this question on Stack Overflow.