Change e letters to i in words: Difference between revisions

Content deleted Content added
MaiconSoft (talk | contribs)
Added Delphi example
Petelomax (talk | contribs)
Line 306:
 
=={{header|Phix}}==
Please make it stop.
<lang Phix>sequence words = get_text("demo/unixdict.txt",GT_LF_STRIPPED)
function chei(string word) return substitute(word,"e","i") end function