Concatenate strings: Difference between revisions
Jump to navigation
Jump to search
m (→Excel) |
m (Text replacement - "Category:Text file processing" to "Category:String manipulation") |
||
| (One intermediate revision by one other user not shown) | |||
| Line 15: | Line 15: | ||
* Using {{kbd | key=<nowiki>+</nowiki>}} symbol to concatenate different strings | * Using {{kbd | key=<nowiki>+</nowiki>}} symbol to concatenate different strings | ||
[[Category:Software]] [[Category:Programming]] [[Category:Data Science]] [[Category: | == References == | ||
<references /> | |||
[[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.
Easy to defined the separator of different cells [1].
MySQL[edit]
- Using the CONCAT function
PHP[edit]
- Using . symbol to concatenate different strings
Javascript[edit]
- Using + symbol to concatenate different strings