Hi @Nathan, Text Analysis tools are provided by Cognitive Activities package and some of them are:
- Google Text Analysis:
UiPath.Cognitive.Activities.Text.Analysis.GoogleTextAnalysis
This activity extracts the language of a specified text, and the strength, positivity or negativity of the sentiment. You can also extract sentences as IEnumerable(String) variables, and the entire information, in a JSON format.
- IBM Watson NLU Text Analysis:
UiPath.Cognitive.Activities.Text.Analysis.IbmWatsonNluTextAnalysis
This activity is available only from UiPath Studio v2018.2. It extracts key information from a specified text, and returns multiple IBM Watson NLU specific data types as well as a raw result in .json format, stored in a String variable.
- IBM Waatson Text Analysis:
UiPath.Cognitive.Activities.Text.Analysis.IbmWatsonTextAnalysis
This activity is deprecated starting with UiPath Studio v2018.2. It extracts the language of a specified text, and an analysis of it in a JSON format, as a String variable.
- Microsoft Text Analysis:
UiPath.Cognitive.Activities.Text.Analysis.MicrosoftTextAnalysis
This text analysis tool extracts the language of a specified text, the overall sentiment, key phrases as IEnumerable(String) variables, and the entire information, in a JSON format.
- StanfordNLP Text Analysis:
UiPath.Cognitive.Activities.Text.Analysis.StanfordCoreNlpTextAnalysis
It analyzes a specified text by using the Stanford CoreNLP Natural Language Annotation Technology, by making API calls to the Stanford CoreNLP server. There are two types of output for this activity, the Raw Result field outputs a .json string that you can further parse, while the Sentences field outputs a list of StanfordCoreNlpSentence variables that can be further processed by using other Stanford CoreNLP activities.