Skip to content
Stanislav Prusac edited this page Oct 1, 2021 · 9 revisions

Welcome to the Polar Name Explorer .NET Core Component. wiki!

Polar Name Explorer .NET Core Component

Example

Analytics analytics = new Analytics();

//Extract name from raw text
ResultNames resultNames = analytics.ExtractNames("My name is Rebecca Armstrong, I'm from London.");
ParseName parseName = resultNames.ParseNames.FirstOrDefault();
Console.WriteLine(parseName.FirstName);//"Rebecca"
Console.WriteLine(parseName.LastName);//"Armstrong"
Console.WriteLine(parseName.GenderData.Gender);//"f"      

//Parse full name
ResultNames resultNames = analytics.ParseName("Rebecca Armstrong");            
parseName = resultNames.ParseNames.FirstOrDefault();
Console.WriteLine(parseName.FirstName);//"Rebecca"
Console.WriteLine(parseName.LastName);//"Armstrong"
Console.WriteLine(parseName.GenderData.Gender);//"f"            

Note

Currently, the product is in the release candidate phase.
Follow the information here on the GitHub repository Polar Name Explorer SDK and on the website
If you have any questions feel free to contact us: support@polarsoftware.com, or find anything you want to know here: issues.

Licensing in brief

100% royalty free distribution, for desktop and server.

Clone this wiki locally