I saw here in the doc that there is a placeholder notation like:
"El valor mínimo para este campo es de {0}"
But I didn't find the function that will do the replacement. I expect a function similar to sprintf
in php to exist which allow to replace these strings like:
function_Im_looking_for("El valor mínimo para este campo es de {0}", 10);
that returns the string "El valor mínimo para este campo es de 10"
.
How can that replacement be achieved.