Hi,
In ArcGis Pro 2.9.5 with Calculate Fied, i split a french date text and i want insert in Date Field.
First task, split the text with / to extract the 3 parts of the text
var date_array = Split("01/01/1987","/",-1);
return IndexOf(date_array,0) + "/" + IndexOf(date_array,1) + "/" + IndexOf(date_array,2)
Returned "-1/-1/-1"
i don't see my mistake
Thanks forn your help
Rémy