Search words in any quote position and then change the words

hi,

i need to replace all words in any quote position and then need to change the words inside the file thousand of raw.

textfile data :

  "Ninguno","Confirma","JuicioABC"
  "JuicioCOMP","Recurso","JuicioABC"
  "JuicioDELL","Nulidad","Nosino"
  "Solidade","JuicioEUR","Segundo"

need output like :

  "Ninguno","Confirma","Inciso"
  "Inciso","Recurso","Inciso"
  "Inciso","Nulidad","Nosino"
  "Solidade","Inciso","Segundo"

The criteria to be replace start with word "JuicioXXX"

Thanking you.

Try

sed 's/"Juicio[^"]*"/"Inciso"/g' file
  "Ninguno","Confirma","Inciso"
  "Inciso","Recurso","Incisio"
  "Inciso","Nulidad","Nosino"
  "Solidade","Inciso","Segundo"