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

ExtractStringValue() private method

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

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