How to do an equivalent on php or perl's & in Objective-C -


संभव डुप्लिकेट:

मेरे पास यह है:

  [NSURL URLWithString: @ "http://myurlc.co.uk/?no="]]  

मैं मूल रूप से ऐसा करना चाहते हैं:

  [NSURL URLWithString: @ "http://myurlc.co.uk/?no=" & amp; TmpString]]  

मैं ऐसा उद्देश्य सी में कैसे करूँगा?

  [@ "http://myurlc.co.uk/?no=" stringByAppendingString: tmpString]  

Comments