I am trying to extract only numbers from a text file in c#. My text file is like as below
xasd 50 ysd 20 zaf 40 bhar 60
I am trying to browse a file with openfileDialoug
and read that file and extract the numbers from the same file and need to compare those values with a constant value say 60
. I need to display how many numbers are present more than that constant number. If those numbers are greater than 60 then i need to append the number of greater values to richtextBox along with the existing text.