I have a problem with my query. I need to search through variables and if there is .
in a string I need to replace that specific character to _
.
I can replace empty spots and -
but I have a problem replacing a dot.
BIND(replace(?input,".","_") AS ?output) .
I have tried also use /.
, //.
, \.
, \\.
, basically anything but the result is the same.
Lexical error. Encountered: "<" <40>, after: "replace"
Thank you in advance.