-
Notifications
You must be signed in to change notification settings - Fork 13
Home
Mavaddat Javid edited this page Apr 4, 2018
·
2 revisions
Compare-PasmAlgorithms
Compare-PasmAlgorithms [-String1] <string> [-String2] <string> [-CaseSensitive] [<CommonParameters>]-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).
None
System.Object
None
None
Compare-Soundex
Compare two strings using Soundex to check for similarity.
Compare-Soundex [-String1] <String> [-String2] <String> [<CommonParameters>]This function will return true if two (english) words sound alike, and false otherwise.
-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).
System.String
System.Boolean
Author: Øyvind Kallstad
Date: 07.11.2014
Version: 1.0
Dependencies: Get-Soundex
-------------------------- ### EXAMPLE 1 --------------------------
### PS C:\>Compare-Soundex 'Johnny' 'Jonny'
Will return True
https://communary.wordpress.com/
https://github.com/gravejester/Communary.### PASM