Working With Strings - Java - Tutorial 7

preview_player
Показать описание

Throughout the course we'll be looking at various topics including variables, arrays, getting user input, loops, conditionals, object orientation, and much more.
Рекомендации по теме
Комментарии
Автор

You explain programming so logicaly that it become interesting and easy, keep up your work and thank you for your help

johnlevinski
Автор

Bro even 4 years later, you’re still teaching. Thank God for you and also thank God for YouTube.

itzlee
Автор

I love the way you talk about the points where a student can get stuck! Thanks man

letsgetstarted.
Автор

Method~modify string

1.Method uppercase
String phrase ="Giraffe Academy";



~GIRAFFE ACADEMY

2.Method lowercase
String phrase="Giraffe academy"


~giraffe academy

3.Method Length

~give number back
~how many characters inside these strings giraffe academy ~13

4.Method contains
~give boolean value
String ="Giraffe academy, ";

~true

String = "Giraffe Academy";

~false

5.Method charAt(1)~indeks angka
String phrase ="giraffe academy";


~i
6. Method indexOff~
"a"~indeks 1
7.method substring
String="Giraffe Academy"

~academy


String="Giraffe Academy";
System.out.printlyn(8, 11));
~aca
8. Substringnindexof

thealchemist
Автор

Great video! But why dont you teach advanced java or advanced python as well

soupnoodles
Автор

thanks mike your videos helping me a lot to understand, the way you expalin is awesome.

bikramsubedi
Автор

Sir you are awesome .I can understand the concepts clearly.

v.nithyashree
Автор

When you talk about substring and count the index you do not count the space as a character. I am confused because when we counted the string length it was 15 but now you are saying that A (in Academy) is at index 8 and d (in Academy) is at index 11 but shouldn't they be respectively at index 9 and 12?
Thanks for your videos . I absolute love them.

FREESOUL
Автор

Hey Mike. Question: can you do all those cool things you did with strings but with arrays instead? I'm trying to print out the value at some index of an integer array. Thanks!

JossinJax
Автор

Starting my programmin at 21 hope am not late

DataAnalystkenya
Автор

Sir you did great in this video. It was so helpful in my examination. But you could have said that space is also added while counting the

ancym
Автор

Even though Java looks like complicated language in its syntax, still I does not include any strict indentation rules like python lol :D me think ;)

ihssancanmturk
Автор

He forgot to mention that those methods don't change the value of the string, they return another string instead .

nour-eddineaarab