Concatenate strings: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
 
Line 18: Line 18:
<references />
<references />


[[Category:Software]] [[Category:Programming]] [[Category:Data Science]] [[Category:Text file processing]]
[[Category:Software]] [[Category:Programming]] [[Category:Data Science]] [[Category:String manipulation]]

Latest revision as of 19:31, 9 March 2021

String Concatenation

Excel[edit]

  • 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[edit]

PHP[edit]

  • Using . symbol to concatenate different strings

Javascript[edit]

  • Using + symbol to concatenate different strings

References[edit]