I need to extract "URPlus1_S2_3" from the string:
"Last one: http://abc.imp/Basic2#URPlus1_S2_3,"
using regular expression in Java language.
Can someone please help me? I am using regex for the first time.
|
|
Try
|
||||
|
|
You gotta learn how to specify your requirements ;) |
|||
|
|
|
You haven't really defined what criteria you need to use to find that string, but here is one way to approach based on '#' separator. You can adjust the regex as necessary.
Go here for syntax documentation: http://download.oracle.com/javase/1.4.2/docs/api/java/util/regex/Pattern.html |
|||||||
|
The above returns the full String in case there's no "#". There are better ways using regex, but the best solution here is using no regex. There are classes URL and URI doing the job. |
|||
|
|
|
Since it's the first time you use regular expressions I would suggest going another way, which is more understandable for now (until you master regular expressions ;) and it will be easily modified if you will ever need to:
|
|||
|
|
|
Here's a long version:
The main point to understand is the use of the parenthesis, they are used to create groups which can be extracted from a pattern. In the |
|||||
|
|
If you just want everything after the
Alternatively, if you want to parse the URI and get the fragment component you can do:
|
|||
|
|