How to dynamically generate token value based on the input entered in Splunk?
Sample Code: <input type="text" token="Degree"> <label>Instance</label> <default>ENTER_THE_DEGREE</default> <change> <condition match="like(lower($value$),"cs%")"> <set token="DegreeFullForm">Computer Science - upper($value$)</set> </condition> <condition match="like(lower($value$),"it%")"> <set token="DegreeFullFormegree">Information Technology - upper($value$)</set> </condition> </change> </input> For input token Degree, ....