-6
votes
0answers
28 views

regex on unstructured data using java

I have an unstructured data file (txt format). I need to extract a tabular information using regex. E.g. # # Acme Inc # ...
0
votes
3answers
32 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
31 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 ...
1
vote
2answers
61 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
2answers
47 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
75 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
29 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
43 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
55 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
17 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
41 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
41 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
54 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
83 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
85 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
62 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
84 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
60 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
38 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
33 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
28 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
87 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
53 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
83 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
60 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
vote
1answer
37 views

Retrieve a Regex Pattern from a MySQL table

I have a table in MySQL containing regex pattern such as : FILE\\\\d{1,4}. But while trying to retrieve the pattern value with a Java code, it seems like the value is not in the good format. How can I ...
0
votes
2answers
34 views

Can you return certain value upon matching an expression in java

Can you return a value from regex upon match ? Say I had regex (^(a|an)$) It will be true when it gets "a" or "an" as input. Can I modify it to return value 1 if it matches in java? 0 should be ...
0
votes
1answer
31 views

how to specify text enclosed in square brackets [duplicate]

I have a string that contains multiple occurrences of text enclosed in square brackets that I need to remove such as: 10/21/2012 12:12:15 [12:12:28] Admitted Last,First (Card #555) at Lobby ...
-3
votes
0answers
36 views

Regular Expressions: Returning the string doubled from MySQL database [closed]

I have a problem: I have multiple articles in a database: All articles are in one table cell divided by a - (minus sign): Example: This is article Article 1 - This is article Article 2 - This is ...
3
votes
4answers
73 views

Extract all occurrences of pattern K and check if string matches “K*” in 1 pass

For a given input string and a given pattern K, I want to extract every occurrence of K (or some part of it (using groups)) from the string and check that the entire string matches K* (as in it ...

1 2 3 4 5 118