Regular Expressions 101

Community Patterns

1

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

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

Community Library Entry

1

Regular Expression
Created·2026-06-30 06:47
Updated·2026-07-02 06:44
Flavor·PCRE2 (PHP)

/
(?<![A-Za-z0-9]) # left boundary: don't start in the middle of a letter/number run (?![^<>]*>) # HTML guard: skip if a ">" is reachable before a "<" (i.e. inside a tag) (?<SMILES> # ================ capture: the whole SMILES ================ # ---- FIRST COMPONENT ---- (?: # an atom: \[[0-9]* # bracket atom: "[" , optional isotope digits, (?: (?:H[eogsf]?|L[iavru]|B[eahkri]?|C[arofmusenld]?|N[eiahopdb]?|O[sg]?|F[rle]?|M[godtcn]|A[lrsgutmc]|S[icerngmb]?|P[uabotmrd]?|Kr?|T[icebmsalh]|V|Z[nr]|G[ade]|R[buhenagf]|Yb?|I[nr]?|Xe|E[urs]|D[ysb]|W|U) # a valid element symbol, |(?:se|as|[bcnops]) # or a lowercase aromatic atom, |\* # or a wildcard ) [^\]]*\] # then charge / H-count / chirality, up to "]" |(?:Cl|Br|[BCNOFPSI]|[bcnops]|\*) # OR an unbracketed organic-subset atom ) (?: # optional chain after the atom: (?: # zero+ interior tokens... (?:\[[0-9]*(?:(?:H[eogsf]?|L[iavru]|B[eahkri]?|C[arofmusenld]?|N[eiahopdb]?|O[sg]?|F[rle]?|M[godtcn]|A[lrsgutmc]|S[icerngmb]?|P[uabotmrd]?|Kr?|T[icebmsalh]|V|Z[nr]|G[ade]|R[buhenagf]|Yb?|I[nr]?|Xe|E[urs]|D[ysb]|W|U)|(?:se|as|[bcnops])|\*)[^\]]*\]|(?:Cl|Br|[BCNOFPSI]|[bcnops]|\*)) # an atom (same shape as above), |[=#$:\/\\\-] # or a bond ( = # $ : / \ - ), |[()] # or a branch paren, |(?:%[0-9]{2}|[0-9]) # or a ring closure ( %NN or single digit ) )* (?: # ...then a required terminal token (never a dangling bond): (?:\[[0-9]*(?:(?:H[eogsf]?|L[iavru]|B[eahkri]?|C[arofmusenld]?|N[eiahopdb]?|O[sg]?|F[rle]?|M[godtcn]|A[lrsgutmc]|S[icerngmb]?|P[uabotmrd]?|Kr?|T[icebmsalh]|V|Z[nr]|G[ade]|R[buhenagf]|Yb?|I[nr]?|Xe|E[urs]|D[ysb]|W|U)|(?:se|as|[bcnops])|\*)[^\]]*\]|(?:Cl|Br|[BCNOFPSI]|[bcnops]|\*)) # an atom, |%[0-9]{2} # or a two-digit ring closure, |[0-9)] # or a closing digit / paren ) )? (?: # ---- ADDITIONAL "."-SEPARATED COMPONENTS (salts, hydrates, ions) ---- \. # component separator "." (?:\[[0-9]*(?:(?:H[eogsf]?|L[iavru]|B[eahkri]?|C[arofmusenld]?|N[eiahopdb]?|O[sg]?|F[rle]?|M[godtcn]|A[lrsgutmc]|S[icerngmb]?|P[uabotmrd]?|Kr?|T[icebmsalh]|V|Z[nr]|G[ade]|R[buhenagf]|Yb?|I[nr]?|Xe|E[urs]|D[ysb]|W|U)|(?:se|as|[bcnops])|\*)[^\]]*\]|(?:Cl|Br|[BCNOFPSI]|[bcnops]|\*)) # first atom of this component (?: # optional chain after the atom: (?: # zero+ interior tokens... (?:\[[0-9]*(?:(?:H[eogsf]?|L[iavru]|B[eahkri]?|C[arofmusenld]?|N[eiahopdb]?|O[sg]?|F[rle]?|M[godtcn]|A[lrsgutmc]|S[icerngmb]?|P[uabotmrd]?|Kr?|T[icebmsalh]|V|Z[nr]|G[ade]|R[buhenagf]|Yb?|I[nr]?|Xe|E[urs]|D[ysb]|W|U)|(?:se|as|[bcnops])|\*)[^\]]*\]|(?:Cl|Br|[BCNOFPSI]|[bcnops]|\*)) # an atom (same shape as above), |[=#$:\/\\\-] # or a bond ( = # $ : / \ - ), |[()] # or a branch paren, |(?:%[0-9]{2}|[0-9]) # or a ring closure ( %NN or single digit ) )* (?: # ...then a required terminal token (never a dangling bond): (?:\[[0-9]*(?:(?:H[eogsf]?|L[iavru]|B[eahkri]?|C[arofmusenld]?|N[eiahopdb]?|O[sg]?|F[rle]?|M[godtcn]|A[lrsgutmc]|S[icerngmb]?|P[uabotmrd]?|Kr?|T[icebmsalh]|V|Z[nr]|G[ade]|R[buhenagf]|Yb?|I[nr]?|Xe|E[urs]|D[ysb]|W|U)|(?:se|as|[bcnops])|\*)[^\]]*\]|(?:Cl|Br|[BCNOFPSI]|[bcnops]|\*)) # an atom, |%[0-9]{2} # or a two-digit ring closure, |[0-9)] # or a closing digit / paren ) )? )* ) # ================ end capture ================ (?![A-Za-z0-9]) # right boundary: don't end in the middle of a letter/number run
/
gmx
Open regex in editor

Description

This matches some pretty complicated SMILES structures, works well for my app.

Submitted by Justin Hyland