Regular expression tips or resources
Posted on
16th Feb 2014 07:03 pm by
admin
Hello! I'm having some issues implementing the appropriate regex patter to eliminate unwanted characters from a string.
Here is a sample string:
Code: String str = "test-hello. me please3, _dog[ -()"; What I need to do is create a regex that will take out all non word characters except for spaces AND strings of type "test-hello" - in other words any string that has word or digit characters followed by a "-" (hyphen) followed by more word or digit characters - this is what is giving me trouble.
Did you know?Explore Trending and Topic pages for more stories like this.
What I have right now which is perfect except for the "test-hello" type strings is:
Code: Pattern replace = Pattern.compile("([^\w ])");Matcher matcher = replace.matcher(str);str = matcher.replaceAll(""); The above code removes all non word or digit characters except for spaces but it will obviously still remove the "-" in "test-hello".
I'm not looking for the whole answer of course but any tips or resources I can be pointed to would be greatly appreciated. I'm not familiar with the regex syntax in Java as I am in say PHP.
Thank you!
No comments posted yet
Your Answer:
Login to answer
84
39
Other forums
Do While statement
hi guys,
This may sound trivial but im new to php and as part of an assignmenti have to const
Gantt Chart Tool
Does anyone know of a good free gantt chart creator tool
Thanks
Displaying image pathname instead of image
Hello
Im trying to upload and then display images from a mysql database - Its only basic and
have trouble in a if condition
The if below is working ok, it check when indexes, name, zipcode and state are empty.
Code: &
Deleting a record php
Attempting to setup delete a record page. The below code I put together doesn't seem to work.
Count of reciepients in php mailer
How can i sent a mail to large no of reciepients say 10,00,00 Using PHP MAILER
rdns with php
I am trying to build a script that will show all of the different domains that are hosted on the sam
Google Wave
So... has anyone used it yet? Is it any good?
http://wave.google.com/help/wave/about.html#vid
in php, link returns to the line
When I add a link in a php page, the link word returns to the line (as a
would do)
Examp
building a function with multiple outputs
I want to build a function that has multiple outputs.
I know but am not to sure how I should