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

0

Regular Expression
Created·2021-07-19 16:21
Flavor·ECMAScript (JavaScript)

/
PV1\|(?:[^\|]*\|){18}1703000105\|(?:[^\|]*\|){31}CO
/
g
Open regex in editor

Description

This regex uses non capturing groups to start the match on the first field and then continue to match second field.

SEGMENT|(?:[^|]|){<POSITION1>}<value1>|(?:[^|]|){<POSITION2>}<value2>

SEGMENT is the first segment that has field to match on <POSITION1> is the zero based count of the field in first segment <value1> is the value to match on in the field in first segment. <POSITION2> is the zero based count of the fields from POSITION1 to field in segment of second field <value2> is the value to match on in the field in the second segment

Example Searching for message with PV1-19 of 1703000105 and ORC-1 of CO, where PV1 has 50 fields and is followed by ORC segment PV1|(?:[^|]|){18}1703000105|(?:[^|]|){31}CO

Submitted by Jo5eph