All language subtitles for 2. UPPER LOWER

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French Download
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 0 1 00:00:01,024 --> 00:00:02,304 The next function is 1 2 00:00:02,560 --> 00:00:04,096 Upper and lower functions 2 3 00:00:04,864 --> 00:00:11,008 Upper and lower function are used to convert the characters to a specified case so upper will change it to uppercase 3 4 00:00:11,264 --> 00:00:14,592 lower will change all the characters in the string to lowercase 4 5 00:00:15,616 --> 00:00:17,920 and the syntax is also similar to length 5 6 00:00:18,432 --> 00:00:22,016 You just right upper and you give the string in parentheses 6 7 00:00:22,272 --> 00:00:26,624 So whatever string you provide within this parenthesis will be converted to the 7 8 00:00:26,880 --> 00:00:27,648 Uppercase 8 9 00:00:28,416 --> 00:00:30,976 If you write lower, it will be converted to lowercase 9 10 00:00:31,744 --> 00:00:33,536 This will basically be used 10 11 00:00:33,792 --> 00:00:35,328 Whenever you are matching strings 11 12 00:00:35,840 --> 00:00:40,960 Sometimes some part of the data is in some case and the other part of data is in some other case 12 13 00:00:41,728 --> 00:00:43,008 so just to maintain uniformity 13 14 00:00:43,520 --> 00:00:45,824 We'll use upper everywhere so upper 14 15 00:00:46,336 --> 00:00:48,896 some part of string you can match with other part of string 15 16 00:00:49,152 --> 00:00:54,528 So both the strings will be in upper case so that there is no mismatch due to difference in case 16 17 00:00:54,784 --> 00:00:57,344 So that's where you you can use upper and lower cases 17 18 00:00:57,856 --> 00:00:59,392 Otherwise you can just use uppercase 18 19 00:00:59,648 --> 00:01:02,464 Whenever you want to change all the characters to uppercase 19 20 00:01:03,744 --> 00:01:05,024 So, as an example you can just 20 21 00:01:05,792 --> 00:01:06,560 Convert this 21 22 00:01:06,816 --> 00:01:08,608 String of Start-Tech Academy 22 23 00:01:09,120 --> 00:01:10,656 To uppercase 23 24 00:01:10,912 --> 00:01:11,936 Or you can 24 25 00:01:12,192 --> 00:01:15,008 Convert the whole string to lowercase let's go and try this 25 26 00:01:15,520 --> 00:01:17,056 We will select 26 27 00:01:17,312 --> 00:01:19,104 and we'll write upper 27 28 00:01:19,616 --> 00:01:25,760 The bracket will say Start-Tech Academy you can see only the first 28 29 00:01:26,016 --> 00:01:28,832 Characters of the words are in uppercase right now 29 30 00:01:29,344 --> 00:01:30,880 When you run this query 30 31 00:01:31,648 --> 00:01:33,184 The output will be 31 32 00:01:34,208 --> 00:01:36,256 All characters are in uppercase 32 33 00:01:38,048 --> 00:01:38,560 you can see 33 34 00:01:38,816 --> 00:01:42,400 All characters are in uppercase you can update tables using this output 34 35 00:01:42,656 --> 00:01:47,776 so that's how this function will help you. select lower 35 36 00:01:48,800 --> 00:01:49,568 Start-Tech Academy 36 37 00:01:53,920 --> 00:01:56,992 so the 1st characters which are in uppercase 37 38 00:01:57,248 --> 00:01:58,272 Will now be in 38 39 00:01:58,528 --> 00:01:59,808 lower case 39 40 00:02:00,064 --> 00:02:01,088 let's run this 40 41 00:02:03,648 --> 00:02:05,184 Everything is in lowercase 41 42 00:02:06,720 --> 00:02:08,000 So that's the use of 42 43 00:02:08,256 --> 00:02:09,280 Upper and lower function 3497

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.