Accord.Imaging.Formats.FITSCodec.ExtractStringValue C# (CSharp) Method

ExtractStringValue() private static method

private static ExtractStringValue ( string strValue ) : string
strValue string
return string
        private static string ExtractStringValue(string strValue)
        {
            // split value from comment
            string[] strs = strValue.Split('/');

            return strs[0].Replace("''", "``").Replace("'", "").Replace("''", "``").Trim();
        }
    }