Can anyone tell me what function I could use to get the number of delimited strings within a delimited string? For example, if I had
String time = "hh:mm:ss";
the function would return 3 because there are three separated strings: hh,mm,ss
Thanks!
Try something like this:
You can read more about the
splitmethod here.