using split in azure stream analytics
问题 I have strings in the format "1234.567.111". I wish to break it into three int. I do not see a split function in azure stream analytics. Is it possible to do this any other way. Thanks Update: I have added a request for split function here.., would appreciate if you guys voted for the same.. 回答1: I wish Stream Analytics had a split function. You may have to use CHARINDEX and SUBSTRING for now: https://msdn.microsoft.com/en-us/library/azure/dn835064.aspx It's a bit of a pain, but the following