C#으로 N-gram에서 4-gram에 대한 기본 예제
## C#으로 N-gram에서 4-gram에 대한 기본 예제
C#에서 4-gram을 구하는 간단한 예제는 다음과 같습니다.
using System;
namespace NgramExample
{
class Program
{
static void Main(string[] args)
{
string str = "hello world";
int len = str.Length;
Console.WriteLine("4-gram of '" + str + "':");
for (int i = 0; i < len - 3; i++)
{
Console.WriteLine(str.Substring(i, 4));
}
}
}
}
위 코드에서, Length 프로퍼티를 사용하여 문자열의 길이를 구하고, for 루프를 사용하여 문자열을 4개씩 묶어서 출력합니다. 출력되는 4-gram은 다음과 같습니다.
4-gram of 'hello world':
hell
ello
llo
lo w
o wo
wor
worl
orld
Comments
Comments are closed