List all User-defined Variables & Functions in a N

2019-01-23 14:54发布

问题:

Is there a way to list all the user-defined variables & function in a Notebook ?

I would like this for the comfort it brings to a notebook overview as well as to spot potential multiple use of a variable name (thus redefining it accidental)

回答1:

To find names in a context, say in the Global context, try

Names["Global`*"]

--Nasser