I have string say "ABC,D" , now I wish to write a method append(initialStr, currStr ) which appends currStr to initailStr only if currstr is not already present in initialStr. I tried a method which splits with comma, but since my string contains comma so that method doesn't works for me. Any help will be greatly appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
|||||||||
|
|
I'd write it like so, to make it work for
|
|||
|
|
|
One option is to use indexOf() to determine if one string is contained in another.
|
|||
|
|
|
You can use
Also, if case doesn't matter you can add toLowerCase() or toUpperCase() to the above code sample:
If you have a lot of string operations to perform, I recommend looking at the StringUtils class from the Apache Commons Lang library. It provides a lot of useful methods. Here is a link to the API: http://commons.apache.org/lang/api-release/org/apache/commons/lang/StringUtils.html |
|||
|
|