dolphindb

Does DolphinDB have an equivalent method to Python join?

Does DolphinDB have an equivalent method to Python join? Question: In Python, I can join all elements into a string separated by a string separator with method join(). >>> ‘,’.join(["{}D".format(i) for i in range(1,6)]) ‘1D,2D,3D,4D,5D’ How can I implement the function equivalent to join in DolphinDB? Asked By: ajldfa || Source Answers: You may try …

Total answers: 1