Does anybody know if there is any power function added for SPARQL?
My quick-fix is using BIND and string process but it's not optimal at all:
?contract part:price ?price_E ;
part:Currency ?currency .
BIND(strafter(str(?price_E), "E") as ?E)
BIND(replace(strbefore(str(?price_E), "E"), "\[.\]", "") as ?nodot)
BIND(substr(?nodot, 0, xsd:integer(?E)+2) as ?first)
BIND(substr(?nodot, xsd:integer(?E)+2, 2) as ?second)
BIND(concat(?first, ".", ?second) as ?price)
Example of input and output data: Input 1.51535E3 Output 1515.35