Skip to content
Mavaddat Javid edited this page Apr 4, 2018 · 2 revisions

Functions



Compare-PasmAlgorithms

SYNTAX

    Compare-PasmAlgorithms [-String1] <string> [-String2] <string> [-CaseSensitive]  [<CommonParameters>]

PARAMETERS

-CaseSensitive
        Required: false
        Position: Named
        Accept pipeline input: false
        Parameter set name: (All)
        Aliases: None
        Dynamic: false
-String1 <string>
        Required: true
        Position: 0
        Accept pipeline input: false
        Parameter set name: (All)
        Aliases: None
        Dynamic: false
-String2 <string>
        Required: true
        Position: 1
        Accept pipeline input: false
        Parameter set name: (All)
        Aliases: None
        Dynamic: false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters (https://go.microsoft.com/fwlink/?Link### ID=113216). 

INPUTS

None

OUTPUTS

System.Object

ALIASES

None

REMARKS

None

Compare-Soundex

SYNOPSIS

Compare two strings using Soundex to check for similarity.

SYNTAX

    Compare-Soundex [-String1] <String> [-String2] <String> [<CommonParameters>]

DESCRIPTION

This function will return true if two (english) words sound alike, and false otherwise.

PARAMETERS

-String1 <String>
        Required: true
        Position: 1
        Default value: none                
        Accept pipeline input: false
        Accept wildcard characters: false
-String2 <String>
        Required: true
        Position: 2
        Default value: none               
        Accept pipeline input: false
        Accept wildcard characters: false
<CommonParameters>
    This cmdlet supports the common parameters: Verbose, Debug,
    ErrorAction, ErrorVariable, WarningAction, WarningVariable,
    OutBuffer, PipelineVariable, and OutVariable. For more information, see
    about_CommonParameters (https://go.microsoft.com/fwlink/?Link### ID=113216). 

INPUTS

System.String

OUTPUTS

System.Boolean

NOTES

    Author: Øyvind Kallstad
    Date: 07.11.2014
    Version: 1.0
    Dependencies: Get-Soundex

-------------------------- ### EXAMPLE 1 --------------------------

### PS C:\>Compare-Soundex 'Johnny' 'Jonny'

Will return True

RELATED ### LINKS

https://communary.wordpress.com/
https://github.com/gravejester/Communary.### PASM

Get-CommonPrefix

Get-CommonSuffix

Get-FuzzyMatchScore

Get-HammingDistance

Get-Intersection

Get-JaccardDistance

Get-JaccardIndex

Get-JaroWinklerDistance

Get-LevenshteinDistance

Get-LongestCommonSubsequence

Get-LongestCommonSubstring

Get-NGram

Get-OverlapCoefficient

Get-PasmScore

Get-RatcliffObershelpSimilarity

Get-SorensenDiceCoefficient

Get-SorensenDiceDistance

Get-Soundex

Get-TypeName

Get-Union

Select-ApproximateString

Select-FuzzyString

Select-SoundexString