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·2022-11-23 13:23
Flavor·.NET 7.0 (C#)

@"
^ *([\+\-]?) *(?>([0-9]+)[.,]?([0-9]*)|[.,]?([0-9]+)) *%? *$
"
Open regex in editor

Description

Turn "123,456 %" into just "123.456"!

Mainly for use in C# to parse percentage as string into double.

  • Strip away whitespace
  • Replace comma with decimal point
  • Only allow valid numeric input
    • multiple commas or decimal points won't match
      • therefore does not support thousands-grouping, not even spaces, sorry
    • multiple % symbols won't match
    • any character not 0-9, ,, . or % won't match
    • + or - will match, but +- or ± will not, nor will any other operators
  • Using $1$2.$3$4 for substitution spits out a sanitized number with a forced decimal point.

Note: The decimal point is present even when the number input doesn't include any decimals, e.g. for 12% the result will be 12.. You may wish to append a 0 in your code to make it 12.0 - in .NET 4.5 C# the double.Parse and double.TryParse handle the result just fine even without that, but your mileage may vary.

See example on repl.it

Submitted by Moravuscz