我正在做一个项目,我需要在字符串中找到一个完整的单词,例如"Hello Stackoverflow, have a nice day"
我想知道单词"over"
是否在该字符串中。我也应该使用toLowerCase()
来避免问题吗?
答案 0 :(得分:0)
angular
.module('app')
.config(['$httpProvider', function($httpProvider) {
$httpProvider.interceptors.push('yourInterceptorFactoryName');
}]);
如果您不确定,请使用String a = "Hello StackOverFlow";
if (a.indexOf("Over") >= 0)
System.out.println("Found");
else
System.out.println("Not Found");
。
答案 1 :(得分:0)
Apache Commons Lang中的StringUtils包含() 和containsIgnoreCase(),以及许多其他有用的实用程序。
https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html
是否忽略大小由您决定,以及您的计划需要做什么'正确'。 HTH