ေျမာက္ကိုးရီးယားမွ ဒံုးပ်ံက်ေရာက္မွုမွ ကာကြယ္ရန္ အတြက္ ျပင္ဆင္ထားပံု
http://seizi.twwwa.org/archives/2007-03.html
သင္ေကာင္းလွ်င္ ကြ်ႏု္ပ္မဆိုးပါ။ သင္ဆိုးလွ်င္ သင့္ထက္ပိုဆိုးလွ်င္ ဆိုးမည္။
http://seizi.twwwa.org/archives/2007-03.html
\ufeff
CREATE DATABASE `dbname` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
CREATE TABLE `dbname`.`tbname` (
`itemname` TEXT CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE = MYISAM;
>>> if word[-1]=="e":word+"d"
>>> if word[-1]=="y":word[:-1]+"ied"
>>> if word[-3] not in "aeiuo" and word[-2] in "aeiuo" and word[-1] not in "aeiuowy": word+word[-1]+"ed"
>>> word+"ed"
% python
>>> from wordnet import *
>>> morphy("ate",VERB)
eat
>>> morphy("easier",ADJ)
easy
>>> morphy("apples")
apple
% pythonOh! its say work as NOUN!
>>> import nltk
>>> nltk.pos_tag(["work"])
[('work', 'NN')]
>>> nltk.pos_tag("he works for a company".split())
[('he', 'PRP'), ('works', 'VBZ'), ('for', 'IN'), ('a', 'DT'), ('company', 'NN')]
event.target.innerHTML.substring(event.target.innerHTML.lastIndexOf(" ",event.rangeOffset),event.target.innerHTML.indexOf(" ",event.rangeOffset));