I am writing a piece of code in which i have to find only complete words for example if i have
String str = "today is tuesday";
and I'm searching for "t" then I should not find any word.
Can anybody tell how can I write such a program in java?
|
I am writing a piece of code in which i have to find only complete words for example if i have
and I'm searching for "t" then I should not find any word. Can anybody tell how can I write such a program in java? |
|||||||
|
|
I use a regexps for such tasks. In your case it should look something like this:
A short explanation: . matches any character, *? is for zero or more times, \b is a word boundary. More information on regexps can be found here or specifically for java here |
|||||
|
Each This uses Case insensitivity can be easily introduced by using the traditional case normalization trick: split and hash See also |
|||||||||||||||||
|
|
|||
|
|
|
||||
|
|
|
|||||||
|
|
use a regex like "\bt\b". |
|||
|
|
you can do that by putting a regex which should end with a space. |
|||||||||||
|
|
I would recommend you use the "split" functionality for String with spaces as separators, then go through these elements one by one and make a direct comparison. |
|||
|
|