Concatenate strings

From LemonWiki共筆
Revision as of 19:31, 9 March 2021 by Unknown user (talk) (Text replacement - "Category:Text file processing" to "Category:String manipulation")
(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 [1].

MySQL

PHP

  • Using . symbol to concatenate different strings

Javascript

  • Using + symbol to concatenate different strings

References