<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>yazilan.org &#187; türkçe</title>
	<atom:link href="http://yazilan.org/etiket/turkce/feed/" rel="self" type="application/rss+xml" />
	<link>http://yazilan.org</link>
	<description>insan, inandığını görür</description>
	<lastBuildDate>Thu, 24 Mar 2011 20:17:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>delphi ile heceleme programı</title>
		<link>http://yazilan.org/delphi-ile-heceleme-programi/</link>
		<comments>http://yazilan.org/delphi-ile-heceleme-programi/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 23:50:58 +0000</pubDate>
		<dc:creator>engin</dc:creator>
				<category><![CDATA[insanlık için yazılar]]></category>
		<category><![CDATA[algoritma]]></category>
		<category><![CDATA[delphi]]></category>
		<category><![CDATA[heceleme]]></category>
		<category><![CDATA[kod]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[türkçe]]></category>

		<guid isPermaLink="false">http://yazilan.org/?p=112</guid>
		<description><![CDATA[çok önceden delphi ile yaptığım bir heceleme algoritması. uzun zaman sonra görünce, buraya da yazmak istedim. programın algoritmasını yazarken nasıl hecelediğimizi keşfetmiştim. o nedenle severim bu algoritmayı. ayrıca bu ve benzeri kodları yayınlarken kodları renklendirebileceğim bi wp plugini bilen var mı? unit &#8230; <a href="http://yazilan.org/delphi-ile-heceleme-programi/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>çok önceden delphi ile yaptığım bir heceleme algoritması. uzun zaman sonra görünce, buraya da yazmak istedim. programın algoritmasını yazarken nasıl hecelediğimizi keşfetmiştim. o nedenle severim bu algoritmayı. <em>ayrıca bu ve benzeri kodları yayınlarken kodları renklendirebileceğim bi wp plugini bilen var mı?</em></p>
<blockquote><p><code>unit Unit1;<br />
interface<br />
uses<br />
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,<br />
Dialogs, StdCtrls, ALScrollingText;</code></p>
<p><code>type<br />
TForm1 = class(TForm)<br />
Memo1: TMemo;<br />
Memo2: TMemo;<br />
Button1: TButton;<br />
procedure Button1Click(Sender: TObject);<br />
private<br />
function sesli(harf:string):boolean;<br />
public<br />
{ Public declarations }<br />
end;</code></p>
<p><code>var<br />
Form1: TForm1;</code></p>
<p><code>implementation<br />
{$R *.dfm}</code></p>
<p><code>function tform1.sesli(harf:string):boolean;<br />
begin<br />
result:=false;<br />
if harf='a'then  result:=true;<br />
if harf='e'then  result:=true;<br />
if harf='ı'then  result:=true;<br />
if harf='i'then  result:=true;<br />
if harf='o'then  result:=true;<br />
if harf='ö'then  result:=true;<br />
if harf='u'then  result:=true;<br />
if harf='ü'then  result:=true;<br />
if harf='A'then  result:=true;<br />
if harf='E'then  result:=true;<br />
if harf='I'then  result:=true;<br />
if harf='İ'then  result:=true;<br />
if harf='O'then  result:=true;<br />
if harf='Ö'then  result:=true;<br />
if harf='U'then  result:=true;<br />
if harf='Ü'then  result:=true;<br />
end;<br />
</code><code><br />
procedure TForm1.Button1Click(Sender: TObject);<br />
var<br />
i:integer;<br />
begin<br />
Memo2.Text := EmptyStr;<br />
for i := 1  to length(Memo1.Text) do<br />
begin<br />
if<br />
not     sesli(copy(Memo1.Text,i,1))<br />
and     sesli(copy(Memo1.Text,i+1,1))<br />
and not (copy(Memo1.Text,i,1)=' ')<br />
and not (copy(Memo1.Text,i-1,1)=' ')<br />
and not (copy(Memo1.Text,i+1,1)=' ')<br />
then<br />
begin<br />
Memo2.text := Memo2.text+'-';<br />
end;<br />
if      sesli(copy(memo1.Text,i,1))<br />
and sesli(copy(memo1.Text,i-1,1))<br />
then<br />
begin<br />
Memo2.text := Memo2.text+'-';<br />
end;<br />
Memo2.Text := Memo2.Text + copy(Memo1.Text,i,1);<br />
end;<br />
</code><code><br />
if copy(Memo2.Text,1,1) = '-' then<br />
begin<br />
Memo2.Text := copy(Memo2.Text,2,length(Memo2.text)-1);<br />
end;<br />
end;<br />
end.</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://yazilan.org/delphi-ile-heceleme-programi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  yazilan.org/etiket/turkce/feed/ ) in 1.46926 seconds, on Feb 4th, 2012 at 8:57 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 4th, 2012 at 9:57 pm UTC -->
