I have a text file with a list of words with definitions, like this...
的 of / ~'s (possessive particle) / (used after an attribute) / (used to form a nominal expression) / (used at the end of a declarative sentence for emphasis)
我 I / me / my
你 you (informal, as opposed to courteous 您[nín])
是 is / are / am / yes / to be / variant of 是[shì] / (used in given names)
了 (modal particle intensifying preceding clause) / (completed action marker)
不 (negative prefix) / not / no
I need to create a text file in Windows 10 for each Chinese word in the list with the content of the file being the English definition.
For example I need a text file named 的.txt
...
...with this content in the file:
of / ~'s (possessive particle) / (used after an attribute) / (used to form a nominal expression) / (used at the end of a declarative sentence for emphasis)
I'm fairly proficient with Javascript, familiar with python, and have powershell available on my computer.
How can I accomplish this?