455 commands2 envUpdated 6h agoCreated Aug 26, 2026
commands/len.js
javascript · 31 lines
1/**#command2name: len3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12/**#command13name: len14answer: 15keyboard: 16parse_mode: markdown17aliases: 18allow_only_group: false19need_reply: false20is_web: 021#command**/22 23try {24var raw = "";25if (typeof params !== "undefined" && params) raw = String(params);26if (!raw) { Bot.sendMessage("طول:\n/len متن"); return; }27raw = raw.slice(0, 2000);28Bot.sendMessage("📏 کاراکتر: " + raw.length);29} catch (e) {30 Bot.sendMessage("خطا len");31}