Java Regex String Matching
I am using the Regex matcher for approximate string matching. I have a question regarding how to make it allow for overlapping matches. Currently, it finds a match then skips to the end of that hit and searches starting there.
Current Code
import java.util.Scanner;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public class BNDM2 {
public static void main(String args){
Scanner sc = new Scanner(System.in);
String nucleotides,pattern;
System.out.print("Enter sequence:");
pattern = sc.nextLine();
System.out.print("Enter nucleotides:");
nucleotides= sc.nextLine();
// first convert the pattern into a proper regex
// i.e. replacing any N with [ATCG]
Pattern regex = Pattern.compile(pattern.replaceAll("N", "[ATCG]"));
// create a Matcher to find everywhere that the pattern matches
Matcher m = regex.matcher(nucleotides);
// find all the matches
while (m.find()) {
System.out.println("Match found:");
System.out.println("start:" + m.start());
System.out.println("end:" + (m.end() - 1)); // minus 1 here because the end of a regex match is always off by 1
System.out.println();
System.out.println("|" + nucleotides.substring(m.start(),m.end())+"|......");
}
}
}
java regex
add a comment |
I am using the Regex matcher for approximate string matching. I have a question regarding how to make it allow for overlapping matches. Currently, it finds a match then skips to the end of that hit and searches starting there.
Current Code
import java.util.Scanner;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public class BNDM2 {
public static void main(String args){
Scanner sc = new Scanner(System.in);
String nucleotides,pattern;
System.out.print("Enter sequence:");
pattern = sc.nextLine();
System.out.print("Enter nucleotides:");
nucleotides= sc.nextLine();
// first convert the pattern into a proper regex
// i.e. replacing any N with [ATCG]
Pattern regex = Pattern.compile(pattern.replaceAll("N", "[ATCG]"));
// create a Matcher to find everywhere that the pattern matches
Matcher m = regex.matcher(nucleotides);
// find all the matches
while (m.find()) {
System.out.println("Match found:");
System.out.println("start:" + m.start());
System.out.println("end:" + (m.end() - 1)); // minus 1 here because the end of a regex match is always off by 1
System.out.println();
System.out.println("|" + nucleotides.substring(m.start(),m.end())+"|......");
}
}
}
java regex
Can you show us a sample of your input data, the results you're getting, and the how they differ from your expected results?
– mypetlion
Nov 13 '18 at 23:29
You're probably going to need quantifiers but as mypetlion says, hard to help you without input + current output vs desired output...
– Mena
Nov 13 '18 at 23:33
add a comment |
I am using the Regex matcher for approximate string matching. I have a question regarding how to make it allow for overlapping matches. Currently, it finds a match then skips to the end of that hit and searches starting there.
Current Code
import java.util.Scanner;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public class BNDM2 {
public static void main(String args){
Scanner sc = new Scanner(System.in);
String nucleotides,pattern;
System.out.print("Enter sequence:");
pattern = sc.nextLine();
System.out.print("Enter nucleotides:");
nucleotides= sc.nextLine();
// first convert the pattern into a proper regex
// i.e. replacing any N with [ATCG]
Pattern regex = Pattern.compile(pattern.replaceAll("N", "[ATCG]"));
// create a Matcher to find everywhere that the pattern matches
Matcher m = regex.matcher(nucleotides);
// find all the matches
while (m.find()) {
System.out.println("Match found:");
System.out.println("start:" + m.start());
System.out.println("end:" + (m.end() - 1)); // minus 1 here because the end of a regex match is always off by 1
System.out.println();
System.out.println("|" + nucleotides.substring(m.start(),m.end())+"|......");
}
}
}
java regex
I am using the Regex matcher for approximate string matching. I have a question regarding how to make it allow for overlapping matches. Currently, it finds a match then skips to the end of that hit and searches starting there.
Current Code
import java.util.Scanner;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public class BNDM2 {
public static void main(String args){
Scanner sc = new Scanner(System.in);
String nucleotides,pattern;
System.out.print("Enter sequence:");
pattern = sc.nextLine();
System.out.print("Enter nucleotides:");
nucleotides= sc.nextLine();
// first convert the pattern into a proper regex
// i.e. replacing any N with [ATCG]
Pattern regex = Pattern.compile(pattern.replaceAll("N", "[ATCG]"));
// create a Matcher to find everywhere that the pattern matches
Matcher m = regex.matcher(nucleotides);
// find all the matches
while (m.find()) {
System.out.println("Match found:");
System.out.println("start:" + m.start());
System.out.println("end:" + (m.end() - 1)); // minus 1 here because the end of a regex match is always off by 1
System.out.println();
System.out.println("|" + nucleotides.substring(m.start(),m.end())+"|......");
}
}
}
java regex
java regex
asked Nov 13 '18 at 23:25
STRSTR
164
164
Can you show us a sample of your input data, the results you're getting, and the how they differ from your expected results?
– mypetlion
Nov 13 '18 at 23:29
You're probably going to need quantifiers but as mypetlion says, hard to help you without input + current output vs desired output...
– Mena
Nov 13 '18 at 23:33
add a comment |
Can you show us a sample of your input data, the results you're getting, and the how they differ from your expected results?
– mypetlion
Nov 13 '18 at 23:29
You're probably going to need quantifiers but as mypetlion says, hard to help you without input + current output vs desired output...
– Mena
Nov 13 '18 at 23:33
Can you show us a sample of your input data, the results you're getting, and the how they differ from your expected results?
– mypetlion
Nov 13 '18 at 23:29
Can you show us a sample of your input data, the results you're getting, and the how they differ from your expected results?
– mypetlion
Nov 13 '18 at 23:29
You're probably going to need quantifiers but as mypetlion says, hard to help you without input + current output vs desired output...
– Mena
Nov 13 '18 at 23:33
You're probably going to need quantifiers but as mypetlion says, hard to help you without input + current output vs desired output...
– Mena
Nov 13 '18 at 23:33
add a comment |
1 Answer
1
active
oldest
votes
You could use public boolean find(int start)
and loop through your entire String
int index = 0;
while (index < nucleotides.length() && m.find(index)) {
//your code here
index=m.start()+1;
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53290982%2fjava-regex-string-matching%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could use public boolean find(int start)
and loop through your entire String
int index = 0;
while (index < nucleotides.length() && m.find(index)) {
//your code here
index=m.start()+1;
}
add a comment |
You could use public boolean find(int start)
and loop through your entire String
int index = 0;
while (index < nucleotides.length() && m.find(index)) {
//your code here
index=m.start()+1;
}
add a comment |
You could use public boolean find(int start)
and loop through your entire String
int index = 0;
while (index < nucleotides.length() && m.find(index)) {
//your code here
index=m.start()+1;
}
You could use public boolean find(int start)
and loop through your entire String
int index = 0;
while (index < nucleotides.length() && m.find(index)) {
//your code here
index=m.start()+1;
}
answered Nov 13 '18 at 23:38
JustinJustin
9781511
9781511
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53290982%2fjava-regex-string-matching%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you show us a sample of your input data, the results you're getting, and the how they differ from your expected results?
– mypetlion
Nov 13 '18 at 23:29
You're probably going to need quantifiers but as mypetlion says, hard to help you without input + current output vs desired output...
– Mena
Nov 13 '18 at 23:33