System Code Samples
- How do I determine the type of Character?
- How do I check if string starts with a specific text?
- How do I encode binary data as Base64 string?
- How do I decode a Base64 encoded binary?
- How do I create a console progress bar?
- How do I split a string?
- How do I convert array of char to string?
- How do I insert a text into String?
- How do I convert number to base 10 from another base?
- How do I determine if character is in lower or upper case?
- How do I check if string ends with a specific text?
- How do I add line break to a string?
- How do I capitalize each word in a string?
- How do I replace a text in a string?
Page 1 of 3 |
Prev
|
Next
How do I create delimited value from an array?
If you want to create a delimited string value out of an array you can use the string.Join() method. The Join method we use below accept two parameters. The delimiter character use to delimiting one value from the other which is the comma symbol and the source information to be delimited, which is the array.
The Join method will return a single string that concatenate all the values in the array delimited with the delimiter symbol.