User:Nanndenn

From Miraheze Meta, Miraheze's central coordination wiki

Dictionaries of foreign words[edit source]

Free dictionaries for programmers[edit source]

Foreign language programmers often require dictionaries. To create a dictionary, you need to do a lot of boring work - copy and paste the words into the file and the translation to them. It is very boring and long.

Here you can download dictionaries for creating your own programs for free.

Each dictionary is a simple text file for words in seven European languages - English, Russian, German, Czech, Portuguese, Spanish and French.

Each text file contains words that start with one letter of the alphabet.

Each line of the text file contains one word in seven languages.

The standard word separator in a string is a comma. Many programming languages have code for dividing a string into words by a standard delimiter.

Sample code[edit source]

PHP code example (Explode)

<?php

// Example

$data = "foo:oflameron:1023:1000::/home/foo:/bin/sh";

list($user, $pass, $uid, $gid, $gecos, $home, $shell) = explode(":", $data);

echo $user; // foo

echo $pass; // oflameron

?>

Excell VBA example (Split)

Sub Test1()

Dim a() As String

a = Split("oflameron foreign languages")

MsgBox a(0) & vbNewLine & a(1) & vbNewLine & a(2)

End Sub

Android Studio Java (Split)

String string = ".45.79..5...78.";

String[] split = string.split("\\.");

System.out.println("g21g string [" + string+"]");

for (int i = 0; i < split.length; i++) {

   System.out.println("g21g split[i] [" + split[i]+"]");

}

All dictionaries can be downloaded and used for free. New dictionaries are added as soon as they are created.

Dictionaries can be copied, expanded, edited errors, posted on websites or blogs for download.

All dictionaries are posted on several resources. For example on Google Drive or Yandex Disk

Dictionaries contain words in Russian and use the Cyrillic alphabet. Some gadgets may not have Cyrillic fonts.

Free download[edit source]

dictionary_A.txt https://drive.google.com/open?id=1t5_5wEQSoybig_U8kbvvjsO35jr2lEeH

dictionary_B.txt https://drive.google.com/open?id=1DJEEST97H24jp2VyZiKeOoACjiOu9i2x

dictionary_C.txt https://drive.google.com/open?id=1SA3hv8ivrDazDqD-nw7KcyF1Y0Njyh-o

dictionary_D.txt https://drive.google.com/open?id=17LXu4V2_rf5EeC2dy0Zf84slln7nt-xf

dictionary_E.txt https://drive.google.com/open?id=1VywBtnkGBDvmZtPyacB4XezDS-wXhwGn

dictionary_F.txt https://drive.google.com/open?id=1pjowPMJYJolklDme8j_uqfZjlt6VI2B3

dictionary_G.txt https://drive.google.com/open?id=1ynBN089I_aUBducDSxZDx2HuH-fQyKRB

dictionary_H.txt https://drive.google.com/open?id=1xYWosmHgmkEEOfhK_qKrY0Rj8JDvKumE

dictionary_I.txt https://drive.google.com/open?id=1xM54w-HvIbXKz5E3dRyH6gd5b_bw_nD4

dictionary_J.txt https://drive.google.com/open?id=1kvh9p36imFZtoWw1wAtFWlIy4rWS3IOX

dictionary_K.txt https://drive.google.com/open?id=1EVU3_ylp8lFxSKQduFp_TShKyir8U2wJ

dictionary_L.txt https://drive.google.com/open?id=18SqlbgPSTjggOVwNZf6cixbYK3_kjs2u

dictionary_M.txt https://drive.google.com/open?id=11xmSheIKHzb3_hx5p9eFkt4FduA4Wa22

dictionary_N.txt https://drive.google.com/open?id=1PtV8cI80KSY-p-KdyCM9GN6H94fTeroF

dictionary_O.txt https://drive.google.com/open?id=1IyW6P3i-WhNQolXvArBAOVmPtfOO04m3

About the author[edit source]

If you want to edit and develop this web page, write to the author -Valery Shmelev (Valery Shmeleff)

Valery Shmeleff

Best regards

(c) by Valery Shmelev