UtilEncryptionMorseCodeDecrypt Method
Namespace: DevCase.Core.Security.Cryptography.EncryptionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static string MorseCodeDecrypt(
string input,
char shortSignal = '.',
char longSignal = '-',
string wordSeparator = "......."
)
Public Shared Function MorseCodeDecrypt (
input As String,
Optional shortSignal As Char = "."C,
Optional longSignal As Char = "-"C,
Optional wordSeparator As String = "......."
) As String
Dim input As String
Dim shortSignal As Char
Dim longSignal As Char
Dim wordSeparator As String
Dim returnValue As String
returnValue = UtilEncryption.MorseCodeDecrypt(input,
shortSignal, longSignal, wordSeparator)
public:
static String^ MorseCodeDecrypt(
String^ input,
wchar_t shortSignal = L'.',
wchar_t longSignal = L'-',
String^ wordSeparator = L"......."
)
static member MorseCodeDecrypt :
input : string *
?shortSignal : char *
?longSignal : char *
?wordSeparator : string
(* Defaults:
let _shortSignal = defaultArg shortSignal '.'
let _longSignal = defaultArg longSignal '-'
let _wordSeparator = defaultArg wordSeparator "......."
*)
-> string
No code example is currently available or this language may not be supported.
- input String
-
The Morse code text to be converted to human readable text.
- shortSignal Char (Optional)
-
Optional. The character representing a short signal (dot) in Morse code. Default is '.'
- longSignal Char (Optional)
-
Optional. The character representing a long signal (dash) in Morse code. Default is '-'
- wordSeparator String (Optional)
-
Optional. The string representing a white-space in Morse code. Default is '.......'
String
The Morse code text converted to human readable text.
This is a code example.
No code example is currently available or this language may not be supported.
Dim input As String = ".... . .-.. .-.. --- ....... .-- --- .-. .-.. -.. -.-.-- .-.-.-"
Dim result As String = MorseCodeDecrypt(input, shortSignal:="."c, longSignal:="-"c, wordSeparator:=".......")
Console.WriteLine(result)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.