VeParse.DotNet
5.0.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package VeParse.DotNet --version 5.0.3
NuGet\Install-Package VeParse.DotNet -Version 5.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VeParse.DotNet" Version="5.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VeParse.DotNet --version 5.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: VeParse.DotNet, 5.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install VeParse.DotNet as a Cake Addin #addin nuget:?package=VeParse.DotNet&version=5.0.3 // Install VeParse.DotNet as a Cake Tool #tool nuget:?package=VeParse.DotNet&version=5.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Ve.DotNet
Channel | Status |
---|---|
CI | |
NuGet.org |
This repository is a port of Ve (a warpper of mecab or kuromoji, similar to cabocha)
based on MeCab.DotNet
class Program
{
private const string Example1 = "太郎はこの本を笑也を見た女性に渡した。";
static void Main(string[] args)
{
// Using Mecab.Extention.IpaDic namespace
var tagger = MeCabTagger.Create();
foreach (var word in tagger.ParseToNodes(Example1).ParseVeWords())
{
Console.WriteLine(
$"{word.Word.PadRight(4, ' ')} {word.Pronunciation.PadRight(5, ' ')} " +
$"{word.PartOfSpeech} {word.Lemma}");
}
}
}
Result
太郎 タロー 固有名詞 太郎
は ワ 助詞 は
この コノ 連体詞 この
本 ホン 名詞 本
を ヲ 助詞 を
笑也 エミヤ 固有名詞 笑也
を ヲ 助詞 を
見た ミタ 動詞 見る
女性 ジョセイ 名詞 女性
に ニ 助詞 に
渡した ワタシタ 動詞 渡す
。 。 記号 。
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- MeCab.DotNet (>= 0.0.40)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.