This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<?xml-stylesheet type="text/xsl" href="vize_denemeler.xsl"?> | |
<!-- author: [email protected] --> | |
<Currencies Tarih="13.11.2015" Date="11/13/2015" Bulten_No="2015/216"> | |
<Currency CrossOrder="0" Kod="USD" CurrencyCode="USD"> | |
<Unit>1</Unit> | |
<Name Lang="tr">ABD DOLARI</Name> | |
<Name Lang="en">US DOLLAR</Name> | |
<ForexBuying>2.8686</ForexBuying> | |
<ForexSelling>2.8738</ForexSelling> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<?xml-stylesheet type="text/xsl" href="final_hazirlik.xsl"?> | |
<!-- author: [email protected] --> | |
<Currencies Tarih="13.11.2015" Date="11/13/2015" Bulten_No="2015/216"> | |
<Currency CrossOrder="0" Kod="USD" CurrencyCode="USD"> | |
<Unit>1</Unit> | |
<Name Lang="tr">ABD DOLARI</Name> | |
<Name Lang="en">US DOLLAR</Name> | |
<ForexBuying>2.8686</ForexBuying> | |
<ForexSelling>2.8738</ForexSelling> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" standalone="no" ?> | |
<!-- INSTEAD OF INNER DTD: <!DOCTYPE catalog SYSTEM "catalog.dtd"> --> | |
<!-- OR USE BOTH DECLARATIONS: <!DOCTYPE catalog SYSTEM "catalog.dtd"[ ... ]> --> | |
<!DOCTYPE catalog [ | |
<!ENTITY % p "(#PCDATA)"> | |
<!ENTITY % img_ext SYSTEM "img_ext.ent"> | |
<!ELEMENT catalog (book*)> | |
<!ATTLIST catalog id IDREFS #IMPLIED> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- author: [email protected] --> | |
<Currencies Tarih="2015-11-13" Date="2015-11-13" Time="15:30:00" Bulten_No="2015/216" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="currencies.xsd" xmlns="http://tempuri.org/currencies.xsd"> | |
<Currency CrossOrder="0" Kod="USD" CurrencyCode="USD"> | |
<Unit>1</Unit> | |
<Name Lang="tr">ABD DOLARI</Name> | |
<Name Lang="en">US DOLLAR</Name> | |
<ForexBuying>2.8686</ForexBuying> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(: input :) | |
xquery version "1.0"; | |
doc("vize_denemeler.xml") | |
/Currencies/Currency/Name | |
[contains(.,"DOLARI")] | |
(: output | |
<Name Lang="tr">ABD DOLARI</Name> | |
<Name Lang="tr">AVUSTRALYA DOLARI</Name> | |
<Name Lang="tr">KANADA DOLARI</Name> :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELIMITER $$ | |
CREATE FUNCTION `regex_replace`(pattern VARCHAR(1000),replacement VARCHAR(1000),original VARCHAR(1000)) | |
RETURNS VARCHAR(1000) | |
DETERMINISTIC | |
BEGIN | |
DECLARE temp VARCHAR(1000); | |
DECLARE ch VARCHAR(1); | |
DECLARE i INT; | |
SET i = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function firstWord(string As String) As String | |
If String.IsNullOrEmpty(string) Then Return String.Empty | |
Dim words As String() = string.Split(" ") | |
Return words(0) | |
End Function |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function lastWord(string As String) As String | |
If String.IsNullOrEmpty(string) Then Return String.Empty | |
Dim words As String() = string.Split(" ") | |
Return words.Last | |
End Function |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function trCharToEn(string As String) As String | |
If String.IsNullOrEmpty(string) Then Return String.Empty | |
string = Replace(string, Chr(199), "C") | |
string = Replace(string, Chr(208), "G") | |
string = Replace(string, Chr(221), "I") | |
string = Replace(string, Chr(214), "O") | |
string = Replace(string, Chr(222), "S") | |
string = Replace(string, Chr(231), "c") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Author: Mevlüt Canvar | |
--> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>echo</title> | |
<script type="text/javascript" src="http://localhost:35729/livereload.js"></script> | |
</head> |
OlderNewer