5
votes
4answers
82 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 ...
0
votes
2answers
81 views

Find a list of unique IP address from a text file

How to write a program in Java to find a list of unique IP address from a text file? I am only a newbie at Java. And I have the following data in txt format: Date first seen Duration Proto ...
4
votes
3answers
142 views

Parsing using Pattern in Java

I want to Parse the lines of a file Using parsingMethod test.csv Frank George,Henry,Mary / New York,123456 ,Beta Charli,"Delta,Delta Echo ", 25/11/1964, 15/12/1964,"40,000,000.00",0.0975,2,"King, ...
-1
votes
2answers
48 views

Wrapping Sentences within <p> Tags with <span>'s, But Keep Other Tags

To give you an idea of what I need, I have been using the below code to parse content within tags and wrap each sentence within tags so I can then interact with sentences on a page. ...
0
votes
0answers
17 views

Parsing with GROK

I have a log of this form 2013/05/09-05:19:16.876 T_RPC coreSlave1 stats [0000000000000000/00000000000000000000] arbitrERR_SYSTEMaryyyy Now I want to retain the entire log message as ...
0
votes
0answers
19 views

How to find the medium and search keyword using referrer - Web Analytics?

I have taken the referrer using the document.referrer from DOM. I had found some of the parameters like(port, source, host, etc.) using parseUri funtion. Now how can I find out the medium and search ...
0
votes
0answers
31 views

GROK Parsing with regex

I am using the following regexes: INT (?:[+-]?(?:[0-9]+)) VALUE ([0-9]+) SPACE \s* DATA .*? USERNAME [a-zA-Z0-9._-]+ YEAR (?>\d\d){1,2} MONTHNUM (?:0?[1-9]|1[0-2]) MONTHDAY ...
-3
votes
3answers
74 views

Parsing comma-separated values containing quoted commas and newlines

I have string with some special characters. The aim is to retrieve String[] of each line (, separated) You have special character “ where you can have /n and , For example Main String ...
4
votes
1answer
129 views

A regular expression that can split a string having nested brackets that are the same

I know that regular expression can be used to write checkers that check for pairs of start and end symbols for brackets: eg. a.[b.[c.d]].e yield values a, [b.[c.d]], and e How can I write a regular ...
0
votes
1answer
56 views

Trouble with recursive text splitting

trying to split text via text-defined boundary markers using recursion and create a list of lists and strings containing all of the organized parts of the original text file. The split isn't ...
0
votes
2answers
14 views

Parse input using regex: Divide string into command and args

I am currently working on a multiplayer based game. The chat is not only supposed to be there for conversation, but is also supposed to act like a server command line. If the parser receives a chat ...
1
vote
2answers
45 views

Split string on spaces except file paths

My java application features a small command line. In order to parse the arguments first the line is read in and than chopped into an array using string.split("\\s+"). The arguments are of the form ...
1
vote
1answer
17 views

Regex For Log Parsing

I am trying to find all of the exceptions that are in a log that are not of type InvalidArgumentException. Our log writes out lines like the following: Class: InvalidArgumentException The ...
1
vote
3answers
82 views

Check if a string contains an email address? [duplicate]

How can I check to verify that a given string contains an email address. The email address would be included with a lot of other text, as well. Also, not looking to necessarily strictly validate the ...
-6
votes
0answers
67 views

regex invalid syntax line c [closed]

Hey, i'm searching how verify syntax line in python with a regex. These lines are invalid and need to return 1 i= 0; i =0; while (i<5) while (i <5) while (i< 5) strcat(buffer,ez) ...
0
votes
2answers
69 views

How to parse some text from file in Perl [closed]

Hello i want to parse file with structure like this... after name: {} it can be other things with same form. something: {}. --- NAMES: first_thing: {} second_thing: {} name: {} Thanks for ...
1
vote
2answers
67 views

PHP Logical Operator matching in strings

I'm putting together a search form. I want to provide the user the option of searching with logical operators. Examples of search queries: red || ((green && pink)) !red && !green ...
0
votes
2answers
41 views

Parsing a formatted string with RegEx or similar

I have an application which sends a TCP message to a server, and gets one back. The message it gets back is in this format: 0,"120"1,"Data Field 1"2,"2401"3,"Data Field 3"1403-1,"multiple ...
1
vote
1answer
31 views

How to parse heterogenous markup with PHP?

I have a string with custom markup for saving songs with chords, tabulatures, notes etc. It contains things in various brackets: \[.+?\], \[[.+?\]], \(.+?\) arrows: <-{3,}>, \-{3,}>, ...
1
vote
1answer
21 views

Parsing multiple same formatted xml items

I have multiple items within my xml code I want to parse. I'm not quite sure of how to do it, any help would be greatly appreciated. Below is a snippet of my xml and python code and what I'm looking ...
-3
votes
1answer
68 views

What is a regex that will find something and grab what is next to it?

I have a project using the forecast API (forecast.io) and I am using the forecast.io wrapper to interact with it. So far as I can tell, the api only returns data like this: ...
3
votes
2answers
124 views

Java Regex: Match text between two strings with boundary conditions

I want to match text between two Strings, but the starting String has strict boundary conditions. Sample input: start From: h From:b xyz Subject: end I need to match between From: and Subject:. ...
0
votes
0answers
48 views

Parsing for pointer and array variables using TCL

I am trying to make a rule on Vera++ using TCL. This rule has to parse a c++ source code file and check for pointer and array variables and appends p_ or a_ before the variables depending what type ...
1
vote
1answer
47 views

Making folder names from URL php

I have a system which will store certain files for various websites. Some websites are shown as basic: www . myrandomsite . com www . yetanothersite . com /sublevel/ http: somefunky.sub . org ...
0
votes
2answers
51 views

Need help parsing blocks of text

I need help parsing this example text: [item1] 2550 coins 995 200000 7 2550 coins 995 200000 7 2550 coins 995 200000 7 2550 coins 995 200000 7 2550 coins 995 200000 7 [/item1] [item2] ...
-1
votes
4answers
79 views

Regular expression to match after first % and before last %

I need a regular expression that can match what is inside the "%" marks in the following string: 1) Bla bla bla %yada yada yada% bla bla. Even if the form is like this: 2) Bla bla bla %yada ...
-3
votes
3answers
79 views

Matching key=“value” pattern in PHP string [closed]

How (easiest way) to convert a string like oneKey="value 1" key2="value 2" anotherKey="value 3" somekey="value containing spaces" to an array with PHP (regex or not)? I would like to retreive the ...
2
votes
1answer
57 views

Python/Regex to parse code

so i have some lines that looks like this in FORTRAN. call const (hsno, npoi*nsnolay, 0.0) I have been using regex and python string functions to parse this code and edit some of the variables. ...
2
votes
3answers
91 views

Parsing street addresses in Ruby

I am processing addresses into their respective field format for the database. I can get the house number out and the street type but trying to determine best method to get the street without number ...
0
votes
0answers
78 views

Parsing a Log File with regular expression

I need to write a parser for log file. I'm doing the regular expression but I'm finding some problems. Here is the first line: s0001 | smich | 02-03-2013 13:55:42 (Tue Mar 2013) | 2 This is the ...
-1
votes
1answer
41 views

Match String in Second Level Domain Only [closed]

Users enter a domain/subdomain in my script as input. I don't want to allow specific strings inside the domain but allow them inside the subdomain (if a subdomain is used). Here's a sample user ...
0
votes
2answers
67 views

Building regular expression

I am making regex for my code parser. I need to recognize string literal, and i made this regex: "([^"]|(\\"))+"? I need to match these cases: "Some String "another string \" string "blah blah \" ...
0
votes
5answers
142 views

How to get value inside <a tag using preg match all?

i got html content that need to extract values inside hyperlink tag using preg match all. I tried the following but i don't get any data. I included a sample input data. Could you guys help me fix ...
1
vote
0answers
56 views

NLTK regexp for noun phrases to not match ending with a preposition

I'm trying to identify noun phrases using NLTK, but am still a little green on regular expressions. I was originally using a regexp like this: NP: {<PP\$>?<JJ.*>*<NN.*>+} But I ...
0
votes
1answer
31 views

Easy way to parse time and speed output from mbuffer?

I have mbuffer to put its output into a file. One line per file, where 3 examples could be summary: 0.0 KiByte in 0.3 sec - average of 0.0 B/s summary: 0.0 KiByte in 12 h 24 min - average of ...
0
votes
2answers
48 views

extracting string using regular expression

I have the following input string input= """href="http://www.sciencedirect.com/science/article/pii/S0167923609002097" onmousedown="return scife_clk(this.href,'','res','2')">Using <b>text ...
1
vote
1answer
70 views

Parsing comments and strings in source code

I'm designing and implementing a scripting language, and for the "reading" stage I'm taking the time-tested and straightforward approach of splitting the code up into tokens (lexical analysis) ...
0
votes
2answers
48 views

Parse for string in string php

I have a problem with regular expressions in PHP. I have a string: "NAPLAK ROSSO+S.ARG.+LACC.ARG.+NK", all of this words contain options like ROSSO,S.ARG, Are colors ROSSO = Red, s.arg = silver and ...
1
vote
1answer
17 views

Separation of tasks between lexer and parser in parsing regular expressions

I am somewhat confused about the separation of tasks between a lexer and a parser. I'm trying to write a parser which takes Perl-style regular expression and builds a syntax tree. My problem is ...
0
votes
1answer
71 views

How can I parse *.cat file [closed]

I want to parse this file. Here is a sample fragment. '13138' => { 'REFERENCE' => '13138', 'NAME' => 'DRAPER Five 125mm Medium Grade Aluminium Oxide Sanding Discs', 'PRICE' => 108, ...
0
votes
4answers
68 views

Extracting Data with Python Regular Expressions

I am having some trouble wrapping my head around Python regular expressions to come up with a regular expression to extract specific values. The page I am trying to parse has a number of productIds ...
0
votes
2answers
43 views

Match character not in nested parentheses

How do you match a character that is not in parentheses? The expression may have an arbitrary number of nested parentheses as well. In other words, I want to split ((2+3)*10)-((10+1)/2) into ...
0
votes
2answers
93 views

Extract number from string using regex in java

I fail to extract a (double) number from a pre-defined input String using a regular expression. The String is: String inputline ="Neuer Kontostand";"+2.117,68"; For successfully parsing just the ...
3
votes
3answers
64 views

Python: splitting a complex string including parentheses and |

In a test file, I have records in the form DATA(VALUE1|VALUE2||VALUE4) and so on. I'd like to split this string in two passes, the first yielding "DATA", and the second giving me what's inside ...
0
votes
3answers
100 views

Parsing code with python

I am really new to python. So forgive anything dumb i say I have a script that goes through a a fortran module line by line it then does a .split() on each line and saves it to an array. However ...
2
votes
3answers
119 views

Parsing message parameters received by a GSM modem in python

I'm trying to parse messages that I receive from a GSM modem in python. I have a lot of messages that I need to parse. I receive new messages every couple of hours or so. Here's an example of the ...
0
votes
1answer
51 views

.Net Regex split with optional items and greediness

Here is a test sample of data I'm trying to parse: Content1 *** Content2 *** Content3 Content3 *** Content4 *** Content5 *** *** Content6 *** *** *** Content7 In short, data entries separated by ...
0
votes
1answer
100 views

Http user agent parser in python

i wanted to parse the User Agent string in the python and classify the browser in the following categories as 1) Browser name 2) Browser version 3) OS/Platform name 4) OS/Platform version 5) ...
-3
votes
2answers
176 views

Parsing a large text file Python vs c# [closed]

What is the fastest way of parsing a 8GB text file? Will Pythons performance be comparable to c#? exampledomain NS ns.anameserver.com. exampledomain NS ns2.anameserver.com. exampledomain NS ...
4
votes
3answers
344 views

Shell Script - list files, read files and write data to new file

I have a special question to shell scripting. Simple scripting is no Problem for me but I am new on this and want to make me a simple database file. So, what I want to do is: - Search for ...

1 2 3 4 5 24