Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Латинські літери в словах #4

Open
G0od1k opened this issue Jan 28, 2023 · 0 comments
Open

Латинські літери в словах #4

G0od1k opened this issue Jan 28, 2023 · 0 comments

Comments

@G0od1k
Copy link

G0od1k commented Jan 28, 2023

У файлі багато некириличних літер. Нижче я приведу приклад у вигляди: рядок літери через кому слово, де є помилки.

71782     n, e, w   Ахта́шnew
92228     c         ба́нcурі
101268    n, e, w   башnew
146771    n, e, w   Бовти́шnew
149023    n, e, w   Богу́шnew
218971    n, e, w   Ве́нишnew
282025    n, e, w   Виро́шnew
670975    n, e, w   Є́зучnew
672363    n, e, w   єрала́шnew
840740    n, e, w   Звара́шnew
939975    n, e, w   Ірти́шnew
963285    n, e, w   Карага́шnew
978506    n, e, w   Кварку́шnew
981977    n, e, w   Келера́шnew
1082994   n, e, w   Ку́мрочnew
1089619   n, e, w   Кутла́шnew
1147811   n, e, w   м'яку́шnew
1168970   n, e, w   Марми́шnew
1588037   n, e, w   п'я́дичnew
1591093   6         П6тік-на-Дубе́цькому
1685179   n, e, w   Пере́ско́чnew
1770233   n, e, w   Пінчnew
2133375   n, e, w   Пру́бишnew
2325362   n, e, w   Са́мошnew
2358304   n, e, w   Сива́шnew
2373632   n, e, w   сіда́чnew
2494568   n, e, w   стрека́чnew
2497001   n, e, w   Стришnew
2546390   n, e, w   Те́кучnew
2551617   n, e, w   Теме́шnew
2621339   n, e, w   тушnew
2671718   n, e, w   У́річnew
2738398   n, e, w   хала́шnew
2774423   n, e, w   хрящnew
2803766   c         ча́cкі
2812582   n, e, w   Чернишńew
2824282   n, e, w   Чорни́шnew
2861295   n, e, w   Шишnew

Я використовував наступний скрипт на NodeJS для знаходження помилок:

const fs = require(`fs`)

let stress = fs.readFileSync(`./stress.txt`, `utf-8`).split(`\n`),
    out = "```\n"

stress.forEach((x, i) => {
    if (/\w+/.test(x)) {
        out +=
            (i + 1).toString().padEnd(10) +
            x.match(/\w/g).join(", ").padEnd(10) +
            x.trim() +
            `\n`
    }
})

out += "```"

fs.writeFileSync("out.md", out)

Гарного дня!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant