I'd like to get the usage statement returned by Information[] as a plaintext string - not boxes, is there a function for this?
This is silly:
Information@ImageCrop
c = NotebookRead@PreviousCell[];
ToString[ToExpression@c[[1, 1, 1, 1, 1]]]
I'd like to get the usage statement returned by Information[] as a plaintext string - not boxes, is there a function for this?
This is silly:
Information@ImageCrop
c = NotebookRead@PreviousCell[];
ToString[ToExpression@c[[1, 1, 1, 1, 1]]]
ImageCrop::usage // ToString? – Kuba Jun 10 '16 at 20:23info[sym_Symbol] := ToString[sym] <> "::usage // ToString" // ToExpression– Bob Hanlon Jun 11 '16 at 00:25WolframLanguageData["ImageCrop", "TypesetUsage"]– yode Jun 11 '16 at 01:11WolframLanguageData["ImageCrop", "PlaintextUsage"]. – Edmund Jun 11 '16 at 02:31