Click here to Skip to main content
15,889,909 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to know that how can I able to search for a specific record using wild card characters like '*' in vb 2005? As an example I want to search for details of an specific customer such as his first name will begin with 'R'? The result should include the First names as Rocky, Ramesh, Rani e.t.c!
Posted

1 solution

You can always use LINQ.
<br />
var q = (from c in NamesList<br />
         where Name.StartsWith("R")<br />
         select c)<br />


This[^] should provide you with some examples as well.
 
Share this answer
 
Comments
Chiranthaka Sampath 22-Oct-11 12:47pm    
I am not familiar with link however I am familiar with SQL, so how can I do this using SQL?
Abhinav S 23-Oct-11 0:48am    
In that case just use the LIKE operator in SQL.
select * from table where name LIKE ('R%').

http://msdn.microsoft.com/en-us/library/ms179859.aspx
Chiranthaka Sampath 24-Oct-11 2:28am    
If I am using a textbox to input that wild card character how can I able to pass it to the SQL statement?
Chiranthaka Sampath 25-Oct-11 4:21am    
Hello are you there?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900