简体   繁体   English

如何知道给定的字符串是否是 Java 中另一个字符串的子字符串

[英]How to know if a given string is substring from another string in Java

Hi I have to compute if a given string is substring of a bigger string.嗨,我必须计算给定的字符串是否是更大字符串的子字符串。 For example例如

String str = "Hallo my world";
String substr = "my"

The method "contains" should return true because str contains substr (false otherwise).方法“包含”应该返回真,因为 str 包含 substr (否则为假)。

I was looking for something like "contains" at the String class but I didn't find it.我在 String 类中寻找“包含”之类的东西,但没有找到。 I suppose that the only solution is to use pattern matching.我想唯一的解决方案是使用模式匹配。 If this is the case which would be the better (cheapest) way to do this?如果是这种情况,哪种方法会更好(最便宜)?

Thanks!谢谢!

There is a contains() method!一个contains()方法! It was introduced in Java 1.5.它是在 Java 1.5 中引入的。 If you are using an earlier version, then it's easy to replace it with this:如果您使用的是早期版本,则很容易将其替换为:

str.indexOf(substr) != -1
 String str="hello world";
        System.out.println(str.contains("world"));//true
        System.out.println(str.contains("world1"));//false
  String s = "AJAYkumarReddy";
    String sub = "kumar";
    int count = 0;
    for (int i = 0; i < s.length(); i++) {
        if (s.charAt(i) == sub.charAt(count)) {
            count++;
        } else {
            count = 0;
        }
        if (count == sub.length()) {
            System.out.println("Sub String");
            return;
        }

    }

如果没有匹配项,使用 indexOf 它将返回 -1(包含在 1.5 中添加,也许您使用的是较旧的 jdk?)请参阅JDK 1.4.2 中 String 类中的“contains(CharSequence s)”方法以获取详细信息

    public boolean isSubString(String smallStr, String largerStr) {
    char[] larger = largerStr.toCharArray();
    char[] smaller = smallStr.toCharArray();

    int i = 0;

    for (int j = 0; j < larger.length; j++) {
        if(larger[j] == smaller[i]){
            if(i == smaller.length -1){
                //done we found that this string is substring
                return true;
            }
            i++;
            continue;
        }else{
            if(i > 0){
                //that means we encountered a duplicate character before and if string was substring 
                // it shouldn't have hit this condition..
                if(larger.length - j >= smaller.length){
                    i = 0;
                    //reset i here because there are still more characters to check for substring..
                }else{
                    //we don't have enough characters to check for substring.. so done..
                    return false;
                }

            }
        }

    }

    return false;
}

here is a general method that you can use这是您可以使用的一般方法

public static boolean isSubstring(String s1, String s2) {
    if(s1.length() == s2.length()) 
        return s1.equals(s2);
    else if(s1.length() > s2.length())
        return s1.contains(s2);
    else
        return s2.contains(s1);

}
if (str.indexOf(substr) >= 0) {
    // do something
}

I think there is a String function that does just what you are asking: String.indexOf(String).我认为有一个字符串函数可以满足您的要求:String.indexOf(String)。

See this link: http://download.oracle.com/javase/1.4.2/docs/api/java/lang/String.html#indexOf(java.lang.String )请参阅此链接: http : //download.oracle.com/javase/1.4.2/docs/api/java/lang/String.html#indexOf(java.lang.String )

So, then you could write this function:那么,你可以编写这个函数:

public boolean isSubstring(String super, String sub) {
    return super.indexOf(sub) >= 0;
}

String.indexOf(substr) 复杂度是 O(n2).. Luixv 问了一个更便宜的解决方案.. 但据我所知,没有比当前更好的算法了。

public static boolean isSubstring(String s1, String s2){
    if(s1.length()<s2.length()) return false;
    if(s1.length()==s2.length()) return s1.equals(s2);
    for(int i=0;i<=s1.length()-s2.length();i++){
        if(s1.charAt(i)==s2.charAt(0)){
            int matchLength=1;
            for(int j=1;j<s2.length();j++){
                if(s1.charAt(i+j)!=s2.charAt(j)){
                    break;
                }
                matchLength++;
            }
            if(matchLength==s2.length()) return true;
        }
    }
    return false;
}

This checks if s2 is a substring of s1.这将检查 s2 是否是 s1 的子字符串。

You can use .substring(int beginIndex,int lastIndex) to check this program.您可以使用 .substring(int beginIndex,int lastIndex) 来检查这个程序。 Sample code goes as below:-示例代码如下:-

public class Test {

    public static void main(final String[] args) {
        System.out.println("Enter the first String");
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        try {
            String s1 = br.readLine();
            System.out.println("Enter the second String");
            String s2 = br.readLine();

            boolean result = isSubStr(s1, s2);
            if (result == true)
                System.out.println("The second String is substring of the first String");
            else
                System.out.println("The second String is not a substring of the first String");

        } catch (IOException e) {
            System.out.println("Exception Caught: " + e);
        }

    }

    public static boolean isSubStr(String st1, String s2) {

        boolean result = false;

        String tem_str = "";
        int len1 = st1.length();
        int i = 0;
        int j;

        while (i < len1) {
            j = i+1;
            while (j <=len1) {
                tem_str = st1.substring(i, j);
                if (tem_str.equalsIgnoreCase(s2)) {
                    result = true;
                    break;
                }
               j++;
            }

            i++;
        }
        return result;
    }
}

Go through this method.通过这个方法。 visit for tricky code访问棘手的代码

public static boolean isSubString(String s, String sub) {
    int count = 0;
    for (int i = 0; i < s.length(); i++) {
        if (s.charAt(i) == sub.charAt(count)) {
            count++;
        } else {
            i-=count;
            count = 0;
        }
        if (count == sub.length()) {
            return true;
        }

    }
    return false;
}

Consider the following code:考虑以下代码:

If substring is present then it returns the start index of substring in a given string如果存在子字符串,则返回给定字符串中子字符串的起始索引

Else returns -1否则返回-1

public static int isSubstring(String str, String pattern)
{
    int str_length = str.length();
    int pattern_length = pattern.length();

    for (int i = 0; i <= str_length - pattern_length; i++)
    {
        int j;

        for (j = 0; j < pattern_length; j++)
            if (str.charAt(i + j) != pattern.charAt(j))
                break;

        if (j == pattern_length)
            return i;
    }
    return -1;
}
    String str1 = "Java8 makes Java more powerful";
    String str2 = "Java";
    char c;
    char d;
    int count=0;
    boolean match = true;
    for (int i = 0; i < str1.length(); i++) {
        c = str1.charAt(i);
        for (int j = 0; j < str2.length(); j++) {
            d = str2.charAt(j);
            if (c == d) {
                match = true;
                count++;
                if(count== str2.length()){
                    i = str1.length();
                    break;
                }
                i++;
                c = str1.charAt(i);
            } else {
                match = false;
            }   
        }
    }

    if(match == true){
        System.out.println("SubString ");
    }
public class StringIsSubString {

    public static void main(String[] args) {

        String s1 = "wel";
        String s2 = "12wlecome123";

        boolean isSubStr = isSubStr(s1,s2);
        System.out.println(isSubStr);
    }

    private static boolean isSubStr(String s1, String s2) {
        String s3 = "";
        int j = 0;

        if(s1.length() > s2.length()) {
            return false;
        } else if(s1.equals(s2)){
            return true;
        } else {
            for(int i=0; i<s1.length();i++) {
                for(; j<s2.length();j++) {
                    if(s1.charAt(i) == s2.charAt(j)) {
                        s3 = s3 + s1.charAt(i);
                        break;
                    }
                }
            }
            if(s3.equals(s1)) {
                return true;
            }
            return false;       
        }
    }
}

*In their any sub string will be count by the form of 1th place of string of substring * *在他们的任何子串中,将按子串的串的第1位的形式计数*

int isSubstring(string s1, string s2) {
    int M = s1.length();
    int N = s2.length();

    for (int i = 0; i <= N - M; i++) {
        int j;
        for (j = 0; j < M; j++)
            if (s2[i + j] != s1[j])
                break;

        if (j == M)
            return i;
    }

    return -1;
}


int main() {
    string s1 = "kumar";
    string s2 = "abhimanyukumarroy";
    int res = isSubstring(s1, s2);
    if (res == -1)
        cout << "Not present";
    else
        cout << "Present at index " << res;
    return 0;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM