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·2017-09-07 07:01
Flavor·PCRE (Legacy)

/
(?P<event_message>An account was successfully logged on.)\s+Subject:\s+Security ID:\s+(?P<subject_security_id>.*?)\s+Account Name:\s+(?P<subject_account_name>.*?)\s+Account Domain:\s+(?P<subject_account_domain>.*?)\s+Logon ID:\s+(?P<subject_logon_id>.*?)\s+Logon Type:\s+(?P<logon_type>.*?)\s+(?:Impersonation Level:\s+(?P<impersonation_level>.*?)\s+)?New Logon:\s+Security ID:\s+(?P<security_id>.*?)\s+Account Name:\s+(?P<logon_account_name>.*?)\s+Account Domain:\s*(?P<logon_account_domain>.*?)\s+Logon ID:\s+(?P<session_id>.*?)\s+Logon GUID:\s+(?P<logon_guid>.*?)\s+Process Information:\s+Process ID:\s+(?P<process_id>.*?)\s+Process Name:\s+(?P<process_name>.*?)\s+Network Information:\s+Workstation Name:\s+(?P<workstation_name>.*?)\s*Source Network Address:\s+(?P<src_addr>\S+)\s+Source Port:\s+(?P<src_port>.*?)\s+Detailed Authentication Information:\s+Logon Process:\s+(?P<logon_process>.*?)\s+Authentication Package:\s+(?P<auth_package>\S+)\s+Transited Services:\s+(?P<trans_serv>.*?)\s+Package Name \S+\s+\S+\s+(?P<package_name>.*?)\s+Key Length:\s+(?P<key_length>.*?)\s+(?P<event_details>.*)
/
g
Open regex in editor

Description

An account was successfully logged on

Submitted by anonymous