Perguntas com a marcação «string»

153
Encontre e substitua valores de sequência na lista

Eu recebi esta lista: words = ['how', 'much', 'is[br]', 'the', 'fish[br]', 'no', 'really'] O que eu gostaria é substituir [br]por um valor fantástico semelhante &lt;br /&gt;e, assim, obter uma nova lista: words = ['how', 'much', 'is<br />', 'the', 'fish<br />', 'no',...

152
Como remover parte de uma string? [fechadas]

Fechadas. Esta pergunta não atende às diretrizes de estouro de pilha . No momento, não está aceitando respostas. Deseja melhorar esta pergunta? Atualize a pergunta para que ela esteja no tópico do Stack Overflow. Fechado há 5 meses . Melhore esta...

151
Como dividir uma string e atribuí-la a variáveis

No Python, é possível dividir uma string e atribuí-la a variáveis: ip, port = '127.0.0.1:5432'.split(':') mas no Go não parece funcionar: ip, port := strings.Split("127.0.0.1:5432", ":") // assignment count mismatch: 2 = 1 Pergunta: Como dividir uma string e atribuir valores em uma...