“Usuń ciąg” Kod odpowiedzi

Wyjmij z Python String

"Str*ing With Chars I! don't want".replace('!','').replace('*','')
Exuberant Eel

Usuń ciąg

string a = "String";
string b = a.Replace("i", "o"); // Strong
       b = a.Insert(0, "My ");  // My String
       b = a.Remove(0, 3);      // ing
       b = a.Substring(0, 3);   // Str
       b = a.ToUpper();         // STRING
int    i = a.Length;            // 6
PrashantUnity

Python Usuń (ciąg)

re.sub(r'\([^)]*\)', '', filename)
Purple Team

Odpowiedzi podobne do “Usuń ciąg”

Pytania podobne do “Usuń ciąg”

Więcej pokrewnych odpowiedzi na “Usuń ciąg” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu