Xcode – How to remove first word from a sentence in swift
I know how to remove first character from a word in swift like this: var data = "CITY Singapore" data.removeFirst() print(data)//ITY Singapore what i want is to remove the first word and space so the result is "Singapore". How can…