Concatenate strings

From LemonWiki共筆
Revision as of 12:34, 8 August 2019 by Planetoid (talk | contribs) (Created page with "String Concatenation == Excel == * Using {{kbd | key=<nowiki>&</nowiki>}} symbol to concatenate different cells such as {{kbd | key=<nowiki>A1&B1</nowiki>}}. * Using the [ht...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

String Concatenation

Excel

  • Using & symbol to concatenate different cells such as A1&B1.
  • Using the CONCAT or CONCATENATE function.
  • Using the TEXTJOIN function. Good.gif Easy to defined the separator of different cells.

MySQL

PHP

  • Using . symbol to concatenate different strings

Javascript

  • Using + symbol to concatenate different strings