“Remova de string” Respostas de código

Remova do string python

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

Remova de string

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 Remover (string)

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

Respostas semelhantes a “Remova de string”

Perguntas semelhantes a “Remova de string”

Mais respostas relacionadas para “Remova de string” em C#

Procure respostas de código populares por idioma

Procurar outros idiomas de código