အကောင်းဆုံးအခမဲ့ စာလုံးပေါင်း
စကားလုံးများစာရင်း, စာလုံး, ဝါကျနှင့်ဖတ်ရှုအချိန်ချက်ချင်း - အခမဲ့, ဘာမှသိမ်းဆည်းထား.
လုပ်ဆောင်ပုံ
- စာသားကို ပေါင်းထည့်ပါ. စာသားကို box ထဲသို့ ထည့်သွင်း သို့မဟုတ် ရိုက်ထည့်ပါ
- စာရင်း. စကားလုံးများ, စာလုံးများ, ဝါကျ, ပုဒ်မနှင့်လိုင်းများတွက်ချက်ရန်စကားလုံးများစာရင်းကိုနှိပ်ပါ။
- စာရင်းအင်းဖတ်ပါ. တစ်ချိန်တည်းမှာပုံတိုင်းကိုကြည့်ပါ, အမှန်တကယ်ဖတ်ရှုအချိန်အပါအဝင်.
ကိရိယာအကြောင်း
မည်သည့်စာသားကို paste နှင့်ချက်ချင်း breakdown ကိုရယူပါ: စကားလုံးများ, characters (with and without spaces), ဝါကျ, paragraphs, lines and an estimated reading time. It's built for anyone working to an limit - an essay word count,ameta description character cap,asocial post, orascript timed for reading aloud. အားလုံးသင်တင်သွင်းစာသားမှစာရင်းသွင်းပြီးဘာမှနောက်ပိုင်းတွင်ထိန်းသိမ်းထားသည်; there's no signup and no length paywall up toagenerous limit.
လူတွေဘာအတွက်သုံးပါသလဲ
- စာတမ်းသို့မဟုတ်တာဝန်စကားလုံးစာရင်းကို hit
- meta ဖော်ပြချက်ကို အက္ခရာ သတ်မှတ်ချက်အတွင်း ထားရှိပါ
- လူမှုရေး post ကို platform cap ကို fits စစ်ဆေး
- စာသားကို ဖွင့်ဖတ်ရန် ဘယ်လောက်ကြာသည်ကို ခန့်မှန်းပါ
ဖန်တီးသူ API
သင့်ရဲ့ကိုယ်ပိုင် code ကိုမှဤ tool ကို Automate. အောက်ပါ endpoint ကို POST ကိုတောင်းဆိုချက်ကိုပို့ပြီး web tool ကိုထုတ်လုပ်အလားတူရလဒ်ကိုရယူ. ဒါဟာ IP ကိုတစ်ဦးနှုန်း-limited ဖြစ်ပါတယ်နှင့် signup မရှိလိုအပ်ပါသည် - မြင့်မားသောကန့်သတ်များအတွက် API ကို key ကိုလာကြပြီ.
https://best.free/api/tools/word-counter/
| သတ်မှတ်ချက် | နမူနာ | လိုအပ်သည် | မှတ်စုများ |
|---|---|---|---|
text |
Paste any text here to count it. |
အင်း | ≤500,000 chars. |
curl -X POST https://best.free/api/tools/word-counter/ \
-H 'Content-Type: application/json' \
-d '{"text": "Paste any text here to count it."}'
import requests
r = requests.post(
"https://best.free/api/tools/word-counter/",
json={"text": "Paste any text here to count it."},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/word-counter/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ text: "Paste any text here to count it." }),
});
const data = await r.json();
console.log(data);
တုံ့ပြန်မှု: JSON stats: words, characters, sentences, reading time…
{"ok": true, "stats": {"words": 7, "characters": 32, "reading_time": 1}}