|
OperationsListNGrams Method
|
Namespace: GSF.FuzzyStringsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.246-beta+ff392465a0262ee2737937d4127fc3c2f08c6dcd
Syntaxpublic static List<string> ListNGrams(
this string source,
int n
)
<ExtensionAttribute>
Public Shared Function ListNGrams (
source As String,
n As Integer
) As List(Of String)
public:
[ExtensionAttribute]
static List<String^>^ ListNGrams(
String^ source,
int n
)
[<ExtensionAttribute>]
static member ListNGrams :
source : string *
n : int -> List<string>
GSF.FuzzyStrings.Operations.ListNGrams = function(source, n);
View SourceParameters
- source String
-
- n Int32
-
Return Value
ListStringUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also