2
votes
3answers
28 views

Regular expression Notepad++ OK JDK 1.6 NOK

As part of my internship, I have to use regular expressions to parse a log file. It's Java log and I have a problem with the detection of exceptions. In fact, my regular expression works on ...
3
votes
4answers
115 views

convert string to int in java

i have a string that has a int value in it. i just want to extract the int value from the string and print. String str="No. of Days : 365"; String daysWithSplChar = ...
3
votes
1answer
23 views

Java Camel case apostrophe issue

Can anyone please help regarding camel casing strings that contain apostrophes, whereby I don't want the next letter after the apostrophe to be put to upper case. My code reads from a txt file and ...
0
votes
4answers
55 views

Can't find the right regex for pattern

I'm trying to get a regex that matches the following pattern: _Something6 When everything has to start with an underscore and has to be followed by an uppercase letter, then any letter or number, ...
9
votes
1answer
62 views

Java case-insensitive regex matching doesn't work with letter Ñ

Consider this program: import java.util.regex.Pattern; public class xx { /* * Ñ * LATIN CAPITAL LETTER N WITH TILDE * Unicode: U+00D1, UTF-8: C3 91 */ public static ...
-7
votes
0answers
40 views

regex on unstructured data using java [closed]

I have an unstructured data file (txt format). I need to extract a tabular information using regex. E.g. # # Acme Inc # ...
0
votes
4answers
58 views

regex remove dot from end of each word in text

I try to remove dot only from end of each word in given text. (in java) for example: input: java html. .net node.js php. output: java html .net node.js php thanks
0
votes
2answers
34 views

Java reluctant matching from both sides of the quantifier

I would like to write a regex in java which will find the shortest available match from both sides of the quantifier. For example, for this pattern "a.*?b" apllied to "aaaaaacbbbbbbb": i would like ...
2
votes
3answers
93 views

String split in java using advanced regex

I'm trying to use String split in java, to split a whole document in substrings between the tabs spaces and newlines but i want to exclude the cases where words exist between quotes. Example: this ...
5
votes
1answer
51 views

Java regex error - Look-behind with group reference

I'm trying to build a regex that matches exactly two occurrences of a char in a class. This is the regex I made: (?<!\1)([^raol1c])\1(?!\1) As you can see, it uses negatives look-aheads and ...
-7
votes
5answers
77 views

Difference Between '+' and '*' operation pattern in REGEXP [closed]

I have a table CANDIDATE in my db which is running under MySQL 5.5 and I am trying to get rows from table where xy is contains in firstname, so I can run below two queries SELECT FIRSTNAME FROM ...
-4
votes
0answers
31 views

Need regex pattern for white list character [closed]

I have created regex pattern which is not success with my different test input, below is my regex pattern ([\\w,()[\\\\]{}\\\":./_\\s])* These are my test input, and regex pattern fail to match ...
1
vote
2answers
46 views

Java: Using Regex to omit text

Hi I'm using Regex to omit text in java, conditionally. String pattern= "(#<omit_[a-zA-Z0-9_]+>)(.+?)(<omit_[a-zA-Z0-9_]+>)"; Mary had a #<omit_size>little <omit_size>lamb, ...
-1
votes
0answers
33 views

Why my two test case failed for given Regex Pattern

When i run testcase program, my two str29 and str32 testcase failed, so i need regex pattern which can success all test cases. My Test Class given Below : package ...
2
votes
2answers
56 views

How to get a regular expression checking result if false?

I have a regular expression to check a string as email format as below: Pattern p = Pattern.compile("^[_A-Za-z0-9-\\+]+(\\.[_A-Za-z0-9-]+)*@ + "[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$"); ...
1
vote
0answers
21 views

How to configure url maping in tuckey-urlrewrite-filter?

I have some page about.jsp, contact.jsp, user.jsp, index.jsp in a folder projects under webapps root. I use tuckey-urlrewrite-filter for url mapping. I used url writing as <rule> ...
5
votes
2answers
42 views

Java Regex Metacharacters

I found this thread and one of users on it posted the following line of code: String[] digits2 = number.split("(?<=.)"); I have consulted a couple of sources- like 1 and 2-to decipher what this ...
0
votes
2answers
42 views

String delimiter using Java Pattern

I have this string which id like to delimit using Java Pattern. There is also a carriage return character after the first line. The delimiter character is | ...
0
votes
4answers
56 views

Translating a regex into a more basic code

How can I write the below code without using regex? public static boolean validateCode(String code){ boolean hasAtLeastOneNumber = Pattern.compile("[0-9].*[0-9]") ...
-1
votes
1answer
46 views

Regex decision trees [closed]

My question is something like this. Given some regular expressions (number of regular expressions can vary.) with each of them mapped to a certain destination(say to a name). So now for a given ...
2
votes
4answers
84 views

How to check if there is at least: two letters, one number and one special character?

How to check if there is at least: two letters, one number and one special character in java? Here is my code but I dont know if I'm in the right direction. public static boolean validarCodigo(String ...
0
votes
1answer
86 views

Automatically paraphrasing sentences in Java

In Java, I'm trying to automatically paraphrase text using regular expressions. So I'll need to find a way to replace the first match of a regular expression with a randomly generated match of that ...
1
vote
4answers
70 views

Only take URL Part from String

I want to get the URL from a string so I can show the url in WebView. example strings: exp 1- Hello dilip refer this url www.google.com. exp 2- hi ramesh this is good for android http://android.com ...
0
votes
3answers
85 views

why does \B works but not \b

Wanted to match a word that ends with # like hi hello# world# I tried to use boundary \b\w+#\b and it doesn't match.I thought \b is a non word boundary but it doesn't seem so from this case ...
0
votes
2answers
61 views

Split each string from a paragraph

I am trying to split each string from a paragraph, which has proper grammar based punctuation delimiters like ,.!? or more if any. I am trying to achieve this using Java. Here is my code. private ...
0
votes
2answers
44 views

Regex for verifying content between tags in XML

I am trying to use regex for verifying contents in an XML file. I have tried the following things. XML file 1: <start> <hi>2dsds</hi> <expected xmlns="sw2223" ...
1
vote
1answer
40 views

What is the MySQL SQL REGEX for this regex

Regular regex: foo(\((\d{1}|\d{2}|\d{3})\))? This regex works in Java: foo(\\((\\d{1}|\\d{2}|\\d{3})\\))? Examples: fooa //no match foo(1)a //no match foo(a) //no match foo(1) ...
0
votes
2answers
34 views

Java regex space matches $ and * ??

I'm not understanding something about how Java's regex matching for \s works. In the simple class below, \s seems to match [at least] $ and *, which is worrisome. When I don't include \s, the last ...
0
votes
1answer
71 views

How to replace strings in Java (Regex?)

Hi and first of all thanks for your help. I need to perform some data manipulation to a great number of strings in Java. This is an example of the kind of string I have to modify: <span ...
-3
votes
2answers
60 views

Finding the last occurence of “.” or “:” java [closed]

I have IP addresses in the following forms: 1) 20fe:f9..d3:93b1.58418 2) 100.253.13.145:1346 I would like to write a Java program to identify the last occurrence of "." or ":". Basically, I am ...
1
vote
3answers
62 views

Regular Expression Java (punctuations) [duplicate]

I would like to identify 2 types of patterns in a string. They are: 1) xxx:xxxxxxx:xxx.xx 2) xxx.xxx.xxx.xx:xxxxxxxxxx Basically I want to know how to identify a literal "." in a string. Since . ...
0
votes
3answers
50 views

Reg expression - split string between matching strings

I am trying to get an array of strings, from a lengthy string. Array consist of strings matching between two other strings (??? and ??? in my case). I tried the following code and it's not giving me ...
0
votes
2answers
30 views

checking file extension with regular expression

I am writing a program that opens a file and loads all the file contents into a JTextArea. I want to restrict users from being able to open different file formats. The formats i want to accept ...
3
votes
5answers
64 views

Regex to match words, special characters and a date

I need a regex for the string which contains in order: alphabets a special character date (dd/mm/yy) e.g. Payments - received by 04/13/13 Could any one help me out on this? I tried the ...
0
votes
3answers
68 views

Regular expression statements (replaceAll)

I'm new to Java and Regex. I have been looking at this regular expression below and do not seems to understand. This is simply to get session key and hope someone can explain to me. Here is the url ...
5
votes
4answers
88 views

How can i use string#split to split a string with the delimiters + - * / ( ) and space and retain them as an extra token?

I need to split strings containing basic mathematical expressions, such as: "(a+b)*c" or " (a - c) / d" The delimiters are + - * / ( ) and space and i need them as an independent ...
1
vote
3answers
39 views

Regex for all Symbols except for |

Is there a way to use the patter \p{Punct} in a regex in Java without the Symbol |. I tried \\p{Punct}&&[^|], but it didn't worked.
0
votes
1answer
55 views

Why very large string throws java.lang.StackOverflow Exception when validated against XSS attack pattern

My requirement is that,i am using white list Regex pattern to avoid xss and sql injection so as my allowed character in string is ([A-Za-z0-9,\\(\\)\\[\\]\\{\\}\"\\:./_\\s]|(?<!-)-)* In short it ...
1
vote
2answers
40 views

Use the same regular expressions across languages like Java and Javascript etc [closed]

Just now I want to learn how to build regular expressions. When I am going to search in Google, the suggestions are regular expressions for Java regular expressions for Javascript .... etc Can I ...
-3
votes
0answers
29 views

StackOverflow Error when validating very large string for XSS attack [closed]

Throw java.lang.StackOverflowError when validate very large string for xss attack -> string which i am validating is given below : ...
2
votes
2answers
63 views

How to get best match using java.util.regex.Pattern

Here is my use case. I have different file processing modules which is invoked based on the file name. So if the filename matches the pattern associated with a certain module that module will pick up ...
0
votes
2answers
33 views

java scanner hasnext(pattern) conflicts with white space

I wrote this regex ([0-9]{2}:){2}[0-9]{2},[0-9]{3} -> ([0-9]{2}:){2}[0-9]{2},[0-9]{3} to match srt time formats like 00:16:31,600 -> 00:16:35,700 and it works fine when i use it like this: ...
3
votes
1answer
86 views

Java regular Expression to replace System.out.println patterns

We are developing an eclipse plugin tool to remove sysout statements from the workspace projects. We are able to achieve our goal only partially. If the sysouts are in one line we are able to delete ...
1
vote
1answer
40 views

Capture string that can match several patterns

I have two types of strings: 1) "bla bla <a>interesting</a> bla bzzz" 2) "bla bla <b>interesting bla bzzz" What I need is to capture the "interesting" substring, preferably using ...
0
votes
0answers
61 views

My regex is causing a stack overflow in Java

Below given json string cause exception java.lang.StackOverflowError at java.util.regex.Pattern$6.isSatisfiedBy(Pattern.java:4763) Regex pattern = ...
2
votes
2answers
39 views

Regex expression to check for string name with underscore in java

I am new to regex expressions in java. How do I check if the file name has the following format update_9_0_27 ? Is it something like [0-9][\\_][0-9][\\_][0-100] ?
2
votes
1answer
94 views

RegEx in java to replace a String

I've been trying to replace this mathematical function x^2*sqrt(x^3) to this pow(x,2)*Math.sqrt(pow(x,3)) so this is the regex /([0-9a-zA-Z\.\(\)]*)^([0-9a-zA-Z\.\(\)]*)/ pow(\1,\2) it works ...
1
vote
2answers
64 views

Extract string between two strings in java

I try to get string between <%= and %>, here is my implementation: String str = "ZZZZL <%= dsn %> AFFF <%= AFG %>"; Pattern pattern = Pattern.compile("<%=(.*?)%>"); String[] ...
0
votes
0answers
33 views

Jax-rs Regex path

I have this Jax-rs service interface: @GET @Path("{id: ^((?!_ah).)*$}") @Produces(MediaType.TEXT_HTML) public Response getStuff(@PathParam("id") String id, @Context HttpHeaders headers, ...
1
vote
0answers
46 views

java.util.Scanner NoSuchElementException with LineFeed terminated file 1025 chars long

I can't figure out why I'm getting a NoSuchElementException. The file I'm reading is a LF terminated, and this code has been running in production for a year now. In the process of debugging my ...

1 2 3 4 5 118