This will match text between @ characters:
(?<=@).*?(?=@)
Those are look-arounds at either end (non-consuming matches) and I've use a non-greedy match between, so the match doesn't run all the way to the end of the next @ surrounded match
If you want an elegant one-liner that extracts all such phraxes, do this:
String[] phrases = input.replaceAll("(^.*?@)|(@[^@]*$)", "").split("@.*?@");
Here's some test code:
public static void main(String[] args) {
String input = "fghgkghfk@hello@ggjgkglgll@hello@ghfufjkfk";
String[] phrases = input.replaceAll("(^.*?@)|(@[^@]*$)", "").split("@.*?@");
System.out.println(Arrays.toString(phrases));
}
Output:
[hello, hello]
fix the regular expression- which one you want us to fix? – Rohit Jain Nov 19 '12 at 18:35ggjgkglgllif you fetch the contents between@. You would have to filter that out. – Rohit Jain Nov 19 '12 at 18:40