expresiones regulares y similitudes foneticas

07/03/2005 - 18:13 por walter | Informe spam
hola alguien sabe donde puedo encontrar informacion de
como usar las expresiones regulares para encontrar
similitudes foneticas entre dos palabras ?

Saludos,

Walter
 

Leer las respuestas

#1 José Luis
07/03/2005 - 20:57 | Informe spam
hola
encontre en l red algo
espero que te sirva
encuentra un numero dentro de una cadena de textbox:
la cadena es:akjsdi sd8902jdklsqpoeou. cuando se preciona el boton buscar
esta el siguiente codigo.

' This routine handles the "Find the Number!" button Click event. It finds
the
' first number in a character string and displays the number and its
starting
' position in the string.
Private Sub btnFindNumber_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles btnFindNumber.Click
' Create an instance of RegEx and pass in the pattern, which will
find one
' or more digits.
Dim re As New Regex("\d+")
' Call Match, passing in the source text.
Dim m As Match = re.Match(txtFindNumber.Text)

' If a match is found, show the results. If not, display an "error"
message.
If m.Success Then
lblResults.Text = String.Format("RegEx found " & _
m.Value & " at position " & m.Index.ToString)
Else
lblResults.Text = "You didn't enter a string containing a number!"
End If
End Sub

"walter" wrote:

hola alguien sabe donde puedo encontrar informacion de
como usar las expresiones regulares para encontrar
similitudes foneticas entre dos palabras ?

Saludos,

Walter

Preguntas similares