Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to perform the following functionality :

From a given paragraph extract the given String, like

String str= "Hello this is paragraph , Ali@yahoo.com . i am entering  random  email here as this one  AHmar@gmail.com " ; 

What I have to do is to parse the whole paragraph, read the Email address, and print their server names , i have tried it using for loop with substring method , did use indexOf , but might be my logic is not that good to get it , can someone help me with it please?

share|improve this question

3 Answers

up vote 3 down vote accepted

You need to use Regular Expression for this case.

Try the below Regex: -

String str= "Hello this is paragraph , Ali@yahoo.com . i am " +
            "entering  random  email here as this one  AHmar@gmail.com " ;

Pattern pattern = Pattern.compile("@(\\S+)\\.\\w+");
Matcher matcher = pattern.matcher(str);
while (matcher.find()) {
     System.out.println(matcher.group(1));
}

OUTPUT: -

yahoo
gmail

UPDATE: -

Here's the code with substring and indexOf: -

   String str= "Hello this is paragraph , Ali@yahoo.com . i am " +
        "entering  random  email here as this one  AHmar@gmail.com " ;

   while (str.contains("@") && str.contains(".")) {

        int index1 = str.lastIndexOf("@");  // Get last index of `@`
        int index2 = str.indexOf(".", index1); // Get index of first `.` after @

        // Substring from index of @ to index of .      
        String serverName = str.substring(index1 + 1, index2);
        System.out.println(serverName);

        // Replace string by removing till the last @, 
        // so as not to consider it next time
        str = str.substring(0, index1);

    } 
share|improve this answer
Suggestion: add a \w at the end to ensure the dot follows with the domain, in case OP later decides to drop the spaces after the emails – Jan Dvorak Oct 23 '12 at 20:35
@JanDvorak. Thanks. Edited code :) – Rohit Jain Oct 23 '12 at 20:36
Yes this works but i have to go with subString – Sikander Nawaz Oct 23 '12 at 20:36
@AhmarAli. Is it a compulsion? – Rohit Jain Oct 23 '12 at 20:37
How about this? Pattern.compile("(?<=\\w+@)(?:\\w+\\.)+\\w+"); – rretzbach Oct 23 '12 at 20:37
show 10 more comments

You need to use a regular expression to extract the email. Start off with this test harness code. Next, construct your regular expression and you should be able to extract the email address.

share|improve this answer

Try this:-

  String e= "Hello this is paragraph , Ali@yahoo.com . i am entering random email here as this one AHmar@gmail.comm";
  e= e.trim();  
  String[] parts = e.split("\\s+");  
  for (String e: parts) 
  {
  if(e.indexOf('@') != -1)
  {
   String temp = e.substring(e.indexOf("@") + 1); 
  String serverName = temp.substring(0, temp.indexOf(".")); 
  System.out.println(serverName);        }}
share|improve this answer
how can we split it by" , " . it is a paragaraph . – Sikander Nawaz Oct 23 '12 at 20:33
extracts at most one email per comma. Split by something else, possibly by @ – Jan Dvorak Oct 23 '12 at 20:37
@JanDvorak: Is it fine now? – LearnedfromMistake Oct 23 '12 at 20:39
Now that you split by @ you shouldn't look for it in the substring. It's no longer there ;-) – Jan Dvorak Oct 23 '12 at 20:40
extracts at most one email per comma. – Jan Dvorak Oct 23 '12 at 20:42
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.