1. 'Single quotes'
Tamamen raw string gibi çalışır.
Örnek
Şöyle yaparız.
Açıklaması şöyle
Şöyle yaparız.
Örnek ver
4. $"Locale translation"
Örnek ver
Tamamen raw string gibi çalışır.
Örnek
Şöyle yaparız.
'hello world' => hello world
'/pkg/bin:$PATH' => /pkg/bin:$PATH
'hello\nworld' => hello\nworld
'`echo abc`' => `echo abc`
'I\'dn\'t've' => I\dn'tve
2. "Double quotes" - Expansion İşlemine Tabi TutulutAçıklaması şöyle
There are two categories of expansion that happen inside double quotes:Örnek
- Those starting with $ (parameter expansion $abc and ${abc}, command substitution $(...), and arithmetic expansion $((...)));
- Command substitution with backquotes `abc`;
Şöyle yaparız.
"hello world" => hello world
"/pkg/bin:$PATH" => /pkg/bin:/bin:/usr/bin
"hello\nworld" => hello\nworld
"hello\\nworld" => hello\nworld
"`echo abc`" => abc
"I\'dn\'t've" => I\'dn\'t've
"I'dn't've" => I'dn't've
"I\"dn\"t've" => I"dn"t've
3. $'ANSI-C quoting'Örnek ver
4. $"Locale translation"
Örnek ver
Hiç yorum yok:
Yorum Gönder