Quantcast
Channel: Active questions tagged string-manipulation - Mathematica Stack Exchange
Viewing all articles
Browse latest Browse all 186

A function that maps Held symbol to string

$
0
0

Rougly my question is about constructing a function that maps Hold[var] to "var"
even when var has an assigned value. In details :

In[1] var=22; A=Hold[var];

Can we construct a function F such thatF[A] becomes the string, "var" ?

In fact, I can do it like :

In[2] F[x_]:=StringDrop[StringDrop[ToString[x],5],-1];In[3] F[A]//InputFormOut[3] "var"

But above method seems somewhat unnatural.

One natural,ideal way I think possible is :

  1. uncover Hold in Hold[var], with its content(=var) untouched,and apply ToString to the content.

Another natural,ideal way I think possible is :

  1. Change Hold in Hold[var] to ToString, with its content(=var) untouched.

Can you suggest natural ways to do it?


Viewing all articles
Browse latest Browse all 186

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>