Added example with one parameter to master branch (#32027)
* javascript comments page makeover (english) Remove redundant information Fix link styles Make everything easier to read * Added example with one parameter
This commit is contained in:
committed by
Randell Dawson
parent
850512c2ab
commit
e86a675b95
@ -4,18 +4,22 @@ title: Substring
|
||||
|
||||
# Substring
|
||||
|
||||
`Substring` extracts a portion of a string value. It is used with 2 integer parameters, the first is location of the first character(starts with index 0) and the second is the desired character length.
|
||||
`Substring` extracts a portion of a string value. It is used with 2 integer parameters, the first is location of the first character(starts with index 0) and the second is the desired character length. If only one parameter is used, it will be the location
|
||||
of the first character, and the rest of the string is returned from the starting position.
|
||||
|
||||
## Example
|
||||
```
|
||||
string firstSentence = "Apple, I have.";
|
||||
string secondSentence = "I have a Pen.";
|
||||
string thirdSentence = "I am having Fun";
|
||||
|
||||
string apple = firstSentence.Substring(0,5);
|
||||
string pen = secondSentence.Substring(9,3);
|
||||
string fun = thirdSentence.Substring(12);
|
||||
|
||||
Console.WriteLine(apple);
|
||||
Console.WriteLine(pen);
|
||||
Console.WriteLine(fun)
|
||||
|
||||
```
|
||||
|
||||
@ -23,4 +27,5 @@ Console.WriteLine(pen);
|
||||
```
|
||||
>Apple
|
||||
>Pen
|
||||
>Fun
|
||||
```
|
||||
|
@ -64,9 +64,8 @@ hello(); //does not log anything
|
||||
### Many IDEs come with a keyboard shortcut to comment out lines.
|
||||
|
||||
1. Highlight text to be commented
|
||||
2. Mac: Push `Command`(Apple Key) + `/`
|
||||
Windows: Push `Control` + `/`
|
||||
- You can also uncomment code by doing the same steps
|
||||
2. Mac: Push `Command`(Apple Key) + `/` or Windows: Push `Control` + `/`
|
||||
3. You can also uncomment code by doing the same steps
|
||||
|
||||
#### More Information:
|
||||
* [How To Write Comments in JavaScript](https://www.digitalocean.com/community/tutorials/how-to-write-comments-in-javascript)
|
||||
|
Reference in New Issue
Block a user