Arama sonuçlarınız

  1. Falcon

    Güncel HTML İçinden Veri Çekme (Regex ile)

    html = HTTP.Request("https://example.com", "GET", "", "", 80, 30, nil, nil) if html then title = String.Match(html, "<title>(.-)</title>") Dialog.Message("Sayfa Başlığı", "Başlık: " .. title, MB_OK, MB_ICONINFORMATION) else Dialog.Message("Hata", "Bağlantı başarısız!", MB_OK...
  2. Falcon

    Ücretli Update Ams9 Object Add-On Packages

    • Merhaba Sevgili Ams Kullanıcıları, Biliyorsunuz yakın zamanda ams güncellendi ve ams 8 eklentileri ams 9'da çalışmıyor. Eklenti Geliştiricileri olarak daha önce ams 9 için yaptığımız eklentileri güncelliyoruz. Yeni Eklentiler Geliştiriyoruz. Bunun için küçük çaplı bir uygulama yaptım. Bu...
  3. Falcon

    Güncel C# KeyPress Olayıyla Sadece Sayı Girişi

    private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { // Eğer girilen karakter rakam (0-9) değilse ve backspace değilse engelle if (!char.IsDigit(e.KeyChar) && e.KeyChar != (char)Keys.Back) { e.Handled = true; // İşlenmesini engelle } }...
  4. Falcon

    Güncel C# listbox aynı olan verileri bulma

    using System; using System.Linq; using System.Windows.Forms; public class Program { public static void Main() { ListBox listBox = new ListBox(); listBox.Items.AddRange(new object[] { "Apple", "Banana", "Orange", "Apple", "Banana", "Grape" }); var tekrarEdenler =...
  5. Falcon

    İndir Navicat Premium Full

    İndir
  6. Falcon

    İndir Ams Plugin Reg Save

    İndir
  7. Falcon

    Ücretli Tedaş Enerji Otomasyonu

    Program Detayları Video da.
  8. Falcon

    İndir TabMenu Object Plugin For Ams9

    Download + Example
  9. Falcon

    Güncel C# Regex İle IP Adresi Doğrulama

    using System; using System.Text.RegularExpressions; class Program { static void Main() { string ip = "192.168.1.1"; string pattern = @"^(\d{1,3}\.){3}\d{1,3}$"; bool isValid = Regex.IsMatch(ip, pattern); Console.WriteLine(isValid); // Çıktı: True } }
  10. Falcon

    Güncel C# Regex İle E-Posta Adresi Doğrulama

    using System; using System.Text.RegularExpressions; class Program { static void Main() { string email = "ornek@mail.com"; string pattern = @"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$"; bool isValid = Regex.IsMatch(email, pattern)...
  11. Falcon

    Güncel C# Regex ile Metin Değiştirme (Replace)

    using System; using System.Text.RegularExpressions; class Program { static void Main() { string text = "Telefon numaram: 555-123-4567"; string pattern = @"\d{3}-\d{3}-\d{4}"; string replacedText = Regex.Replace(text, pattern, "***-***-****")...
  12. Falcon

    Güncel C# Regex ile Tüm Eşleşmeleri Bulma

    using System; using System.Text.RegularExpressions; class Program { static void Main() { string text = "Yaşlar: 25, 34 ve 42."; string pattern = @"\d+"; // Sayıları eşleştiren regex MatchCollection matches = Regex.Matches(text, pattern); foreach (Match...
  13. Falcon

    Güncel C# Basit Bir Regex Kullanımı

    using System; using System.Text.RegularExpressions; class Program { static void Main() { string text = "Merhaba dünya!"; string pattern = "dünya"; bool match = Regex.IsMatch(text, pattern); Console.WriteLine(match); // Çıktı: True } }
  14. Falcon

    Duyuru Üyelik Alımları Açıldı. Membership Recruitment is Open.

    - Merhaba Arkadaşlar Sitemiz de Bazı Sorunlardan Dolayı Sistemi Sıfırlamak Zorun da Kaldık. Lütfen Kayıt Olarak Destek Olun. Sizleri Madur Ettiğimiz İçin Özür Dileriz. Desteklerinizi Bekliyoruz. - Hello Friends, Due to Some Problems on Our Site, We Had to Reset the System. Please Support by...
Geri
Üst