Tests
Tests - Checking the start or the end of a string
|
1. [ C++ ] Test a string
The code selects those countries that begin with "D".
test text
1. [ C# ] Test a stringWe use the method StartsWith
The code selects those countries that begin with "D".
The method EndsWith is similar. test text
1. [ Java ] Test a stringWe use the method startsWith
The code selects those countries that begin with "D".
The method endsWith is similar. test text
|