Concatenate strings: Difference between revisions
Jump to navigation
Jump to search
m (→Excel) |
mNo edit summary |
||
| Line 14: | Line 14: | ||
== Javascript == | == Javascript == | ||
* Using {{kbd | key=<nowiki>+</nowiki>}} symbol to concatenate different strings | * Using {{kbd | key=<nowiki>+</nowiki>}} symbol to concatenate different strings | ||
== References == | |||
<references /> | |||
[[Category:Software]] [[Category:Programming]] [[Category:Data Science]] [[Category:Text file processing]] | [[Category:Software]] [[Category:Programming]] [[Category:Data Science]] [[Category:Text file processing]] | ||
Revision as of 12:35, 8 August 2019
String Concatenation
Excel
- 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
- Using the CONCAT function
PHP
- Using . symbol to concatenate different strings
Javascript
- Using + symbol to concatenate different strings