Skip to content

Commit 7ba6fbf

Browse files
committed
Update Subword.cs
1 parent 35313c0 commit 7ba6fbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

thainlp/Subword.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ public static string[] tcc(string txt)
1616
List<string> d = new List<string>();
1717
while (p < txt.Length)
1818
{
19-
Console.WriteLine("c : " + txt[p..]);
19+
// Console.WriteLine("c : " + txt[p..]);
2020
Match mc = Regex.Match(txt[p..], re);
2121
if (mc.Success)
2222
{
2323
n = mc.Value.Length;
24-
Console.WriteLine(n);
24+
// Console.WriteLine(n);
2525
}
2626
else
2727
{

0 commit comments

Comments
 (0)