are in serious trouble, I can not figure out how to run my application, I have a textbox ( textboxdescription.text )with the following text: burger € 2.00
I want to take this textbox only the cost and display it in another textbox
(textboxeuro.text )but I have not figured out how to deal with Regex.Split
can someone give me an example?
I tried in this way but I can not get it to work
Sub btneuro_Click
if textboxdescription.text.contains("€") then
textboxeuro.text = textboxdescription.text.endswith("€")
end if
End Sub
not work,
help
I realize that is not the exact code to extrapolate the cost and display it in textbox.euro