我有 NSString,如果 NSString 的内容来自 url。我想在这个 NSString 之间添加一个单词,然后是一个特定的单词。这个 NSString 是否会不断变化
例如:
我得到一个数据" hi mac this is ios"
,这个字符串可能会像这样不断变化
" hi ios this mac" or hi this is mac ios"
,等等。
我想添加一个像“hello”这样的词,后跟“mac”
" hi mac hello this is ios"
" hi ios this mac hello"
"hi this is mac hello ios"
我怎样才能做到这一点