|
Working with strings
|
|
| Using Concatenation the . operator | First name plus last name = First name plus last name = Joe Blow |
| Finding String Length - using strlen() The length of the name is 8 | The length of the name is The length of the name is 8 |
| Getting Part of a string - using strstr() | The part of the name after the space is The part of the string after the space is Blow |
| Finding position of part of a string - using strpos() | The position of the letter "o" is The position of the letter "a" is 1 |