I need to extract first numeric value set from a string. Here (Link Here), I have found a RegEx way to do that. But, in my case I have a LINQ query from where I need to do the same logic.
Here is my exisiting Logic
bool Isbn = db.BibContents.Any(ad => ad.NormValue == ISBN); // I need to do the numeric split logic into the db column NormValue
Note
I cannot loop here to get values first and compare in the loop. Because, I have huge number of records in DB and NormValue Column is nvarchar(max) typed.
Any help to this will be appreciated.
Thanks