Jump to content
Fórum Script Brasil
  • 0

Manipular Letras em TextBox


D_BOB

Question

Galera a dúvida é a seguinte, quero extrair apenas determinada letra de uma string.

por exemplo, tenho a string e quero extrair apenas a letra "s"

aux = "teste"

preciso de uma rotina que compare cada letra acima, e uma segunda varável recebendo só a letra "s".

fui claro?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Não sei se entendi bem o que você quer, mas para percorrer os caracteres de uma string você pode fazer:

Dim texto As String = TextBox1.Text

For Each c As Char In texto
    MessageBox.Show(c)
Next c

No lugar de mostrar o caracter (MessageBox.Show©) você pode fazer o que quiser com ele (como comparar e atribuir a outra variável).

Abraços,

Graymalkin

Link to comment
Share on other sites

  • 0

Obrigado Graymalkin ,

já tinha tentado até algo parecido mas tinha problemas na hora de retornar o valor, essa rotina vai me ajudar a testar uma sequencia de caracteres que tem algumas restrições.

Caso alguém precise, segue codigo para c#

string texto = "teste";

foreach (Char c in texto)

{

MessageBox.Show( Convert.ToString©);

}

Edited by D_BOB
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...