Csv and space character

Hallo, i’m newbie of this tool. Can you say me how to write a space character in a reading csv file.
This is my routine, supposing i want to reach Telecom Italia, in the firs row of my simboli.csv how to register Telecom Italia?

{
  "Name": "01_investing_dati-1",
  "CreationDate": "2019-6-22",
  "Commands": [
    {
      "Command": "csvRead",
      "Target": "simboli.csv",
      "Value": ""
    },
    {
      "Command": "open",
      "Target": "https://it.investing.com/equities/italy",
      "Value": ""
    },
    {
      "Command": "pause",
      "Target": "3000",
      "Value": ""
    },
    {
      "Command": "click",
      "Target": "id=stocksFilter",
      "Value": ""
    },
    {
      "Command": "select",
      "Target": "id=stocksFilter",
      "Value": "label=Italia tutte le azioni"
    },
    {
      "Command": "click",
      "Target": "id=all",
      "Value": ""
    },
    {
      "Command": "pause",
      "Target": "2000",
      "Value": ""
    },
    {
      "Command": "click",
      "Target": "link=${!COL1}",
      "Value": ""
    },
    {
      "Command": "pause",
      "Target": "2000",
      "Value": ""
    },
    {
      "Command": "click",
      "Target": "xpath=//*[@id=\"leftColumn\"]/div[1]/h1",
      "Value": ""
    },
    {
      "Command": "storeText",
      "Target": "id=leftColumn",
      "Value": "!csvLine"
    },
    {
      "Command": "csvSave",
      "Target": "elencosimboli",
      "Value": ""
    }
  ]
}

I am not sure I understand the question. Where do you need the space character? If you mean inside the link, then it is just a normal space. This macro works:

{
  "Name": "test",
  "CreationDate": "2019-6-25",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://it.investing.com/equities/italy",
      "Value": ""
    },
    {
      "Command": "clickAndWait",
      "Target": "link=Telecom Italia@POS=2",
      "Value": ""
    }
  ]
}

oh, no, i have to store “Telecom Italia” in the first column of a .csv file

Can you please share the simboli.csv file so we can better understand the issue.
Also are you trying to save the output to the file elencosimboli?