Regular Expressions 101

Community Patterns

1

ตรวจสอบพยัญชนะต้นตัวสะกดสระและวรรณยุกต์ไทย

Created·2026-01-22 01:36
Updated·2026-01-23 12:42
Flavor·ECMAScript (JavaScript)
ตรวจสอบพยัญชนะต้น (ต้องมี) ตรวจตัวสะกดสำหรับสระที่ต้องมี ตรวจสอบการวางสระและวรรณยุกต์ไทย หมายเหตุ การตรวจสอบตัวสะกดในภาษาไทยตรวจสอบได้ยากเพราะภาษาไทยเป็นภาษาที่เขียนติด ๆ กันไม่มีการแบ่งคำอย่างชัดเจนทำให้การอ่านภาษาไทยผู้อ่านต้องใช้ความหมายของคำในการตัดสินการอ่านแบ่งคำตามความเหมาะสมเช่นคำว่า "ตากลม" อาจอ่านเป็น "ตาก-ลม" ก็ได้ หรืออ่านเป็น "ตา-กลม"ก็ได้ ดังนั้นการเขียน Regex เพื่อทำการตรวจสอบอาจช่วยได้ระดับหนึ่ง อ่าจมีผิดบ้างถูกบ้าง แต่ก็ถือว่าเป็นเครื่องมือที่ใช้ช่วยเหลือในการตรวจสอบเพิ่มเติมได้ 80% ของความเป็นไปใด้ก็แล้วกันนะครับ หวังว่าการเขียนเพิ่มเติมส่วนนี้ จะมีประโยชน์บ้างไม่มากก็น้อย
Submitted by อธิปัตย์ ล้อวงศ์งาม

Community Library Entry

1

Regular Expression
Created·2025-11-21 07:34
Flavor·PCRE2 (PHP)

Description

<?php session_start(); ?> <!DOCTYPE html> <html> <head> <title>Produktverwaltung</title> </head> <body> <?php class Produkt { private $name; private $preis; private $id; public function __construct($name = '', $preis = 0) { $this->setName($name); $this->setPreis($preis); $this->id = uniqid(); } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setPreis($preis) { $this->preis = $preis; } public function getPreis() { return $this->preis; } public function getId() { return $this->id; } } if (isset($_POST['speichern'])) { $neuesProdukt = new Produkt($_POST['name'], $_POST['preis']); if (!isset($_SESSION['produkte'])) { $_SESSION['produkte'] = array(); } $_SESSION['produkte'][$neuesProdukt->getId()] = $neuesProdukt; } if (isset($_POST['loeschen'])) { unset($_SESSION['produkte']); $_SESSION['produkte'] = array(); } ?> <form method="POST"> <label>Produktname:</label> <input type="text" name="name" value="Beispielprodukt" required><br><br>
<label>Preis:</label>
<input type="number" name="preis" value="10.99" step="0.01" min="0" required><br><br>

<button type="submit" name="speichern" value="speichern">Speichern</button>
<button type="submit" name="loeschen" value="loeschen">Alle löschen</button>
</form> <h3>Gespeicherte Produkte:</h3> <?php if (isset($_SESSION['produkte'])) { foreach ($_SESSION['produkte'] as $produkt) { echo "<p>Produkt: " . $produkt->getName() . "</p>"; } } ?> </body> </html>
Submitted by anonymous