find a word
-
dear all, how to get a specific word from a sentence considering the blank spaces also (sql query).
kissy
Hi Kissy, you could use regular expressions. Do you need a sql query to get the word from the sentence, or can you do this in code? Regards Sebastian
It's not a bug, it's a feature! Me in Softwareland.
-
dear all, how to get a specific word from a sentence considering the blank spaces also (sql query).
kissy
Kissy16 wrote:
how to get a specific word from a sentence considering the blank spaces also (sql query).
Does it anything releated to ASP.NET ?
cheers, Abhijit My Recent Article : Beginner's Guide to ASP.NET Application Folder
-
dear all, how to get a specific word from a sentence considering the blank spaces also (sql query).
kissy
You can use indexOf() funciton to check whether word exist or not. Ex: _line = "This is the word to find in sentence"; int k = _line.indexOf("word") if k = -1, the searching word not found otherwise it is found
G. Satish