Both NumberToString and NujmberToDisplayString have the same syntax. I got the same result in an AE program:
MessageBox(0, "", 0, 0, NumberToDisplayString("%10.2v", 12345.6)); --> 12,345.60
MessageBox(0, "", 0, 0, NumberToString("%10.2v", 12345.6)); --> 12,345.60
What is the difference between these two functions?