|
|
|
มีโจทย์ อยากให้ลองทำเล่นๆดู เกี่ยวกับการ จัดการ string หรือ text ครับ |
|
|
|
|
|
|
|
Code ยาวเกินไปน่ะครับ แสดงผลไม่ได้
|
|
|
|
|
Date :
2017-12-14 11:30:51 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องการลบ Comment ออกหรอครับ
|
|
|
|
|
Date :
2017-12-15 16:36:20 |
By :
nPointXer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ Regex น่าจะเร็วสุดละครับ
Code (C#)
Regex comments1 = new Regex(@"//.*?\n");
Regex comments2 = new Regex(@"/\*(.|\n)*?\*/");
string readText = File.ReadAllText(@"D:\PDFHelper.cs");
string afterRemoval = comments1.Replace(readText, "");
afterRemoval = comments2.Replace(afterRemoval, "");
|
|
|
|
|
Date :
2017-12-15 17:27:02 |
By :
OOP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|