private void tomaSugerencia()
        {
            Variable v = (Variable)ambitoPregunta.getSimbolo("sugerir");

            if (v != null)
            {
                if (v.valor is String)
                {
                    this.sugerencia = (String)v.valor;
                    ParserStr p = new ParserStr(this.sugerencia);
                    String    n = p.reemplazaCadena();
                    if (!this.sugerencia.Equals(n))
                    {
                        this.sugerencia = n;
                    }
                }
            }
        }
        private void tomaEtiqueta()
        {
            Variable v = (Variable)ambitoPregunta.getSimbolo("etiqueta");

            if (v != null)
            {
                if (v.valor is String)
                {
                    this.etiqueta = (String)v.valor;
                    ParserStr p = new ParserStr(this.etiqueta);
                    String    n = p.reemplazaCadena();
                    if (!this.etiqueta.Equals(n))
                    {
                        this.etiqueta = n;
                    }
                }
            }
        }