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·2026-01-12 14:12
Flavor·PCRE2 (PHP)

/
(1 chron(?:\.|)|1 chronicles|1 cor(?:\.|)|1 corinthians|1 john|1 kings|1 pet(?:\.|)|1 peter|1 sam(?:\.|)|1 samuel|1 thess(?:\.|)|1 thessalonians|1 tim(?:\.|)|1 timothy|2 chron(?:\.|)|2 chronicles|2 cor(?:\.|)|2 corinthians|2 john|2 kings|2 pet(?:\.|)|2 peter|2 sam(?:\.|)|2 samuel|2 thess(?:\.|)|2 thessalonians|2 tim(?:\.|)|2 timothy|3 john|acts|amos|col(?:\.|)|colossians|dan(?:\.|)|daniel|deut(?:\.|)|deuteronomy|eccles(?:\.|)|ecclesiastes|eph(?:\.|)|ephesians|est(?:\.|)|esther|ex(?:\.|)|exodus|ezek(?:\.|)|ezekiel|ezra|gal(?:\.|)|galatians|gen(?:\.|)|genesis|hab(?:\.|)|habakkuk|hag(?:\.|)|haggai|heb(?:\.|)|hebrews|hos(?:\.|)|hosea|isa(?:\.|)|isaiah|james|jer(?:\.|)|jeremiah|job|joel|john|jonah|josh(?:\.|)|joshua|jude|judg(?:\.|)|judges|lam(?:\.|)|lamentations|lev(?:\.|)|leviticus|luke|mal(?:\.|)|malachi|mark|matt(?:\.|)|matthew|mic(?:\.|)|micah|nah(?:\.|)|nahum|neh(?:\.|)|nehemiah|num(?:\.|)|numbers|obad(?:\.|)|obadiah|phil(?:\.|)|philem(?:\.|)|philemon|philippians|prov(?:\.|)|proverbs|ps(?:\.|)|psalms|rev(?:\.|)|revelation|revalations|rom(?:\.|)|romans|ruth|song|song of solomon|titus|zech(?:\.|)|zechariah|zeph(?:\.|)|zephaniah) [1-9]*(:[1-9]*|-[1-9]*|:[1-9]*-[1-9]*|)
/
gmi
Open regex in editor

Description

I've created this for a simple project of mine, it squishes every book of the Bible into a RegEx, with the full name, abbreviation, and abbreviation with a dot. Then, it matches the chapter and verse relatively simply.

Submitted by Twineee