5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Javaの文字列 部分一致(matches関数)

Posted at

Javaで部分一致する方法をいつも忘れてしまうのでメモっとく。
文字列str1に文字列str2が含まれていればtrue。

.java
public boolean isMatch(String str1, String str2) {
	if(str1.matches(".*" + str2 + ".*")) {
		return true;
	}
	else {
		return false;
	}
}
5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?