1
vote
1answer
50 views

Python Import data dictionary and pattern

If I have data as: Code, data_1, data_2, data_3, [....], data204700 a,1,1,0, ... , 1 b,1,0,0, ... , 1 a,1,1,0, ... , 1 c,0,1,0, ... , 1 b,1,0,0, ... , 1 etc. same code different value (0, 1, ?(not ...
1
vote
1answer
53 views

Filling a list with regular expression results python

I would like to search a string for specific substrings and store these substrings in a list using re, how would I go about doing that? Here is my code so far: #!/usr/bin/env python from sys import ...
0
votes
2answers
34 views

In python, how do i extract a sublist from a list of strings by matching a string pattern in the original list

How do i return a sublist of a list of strings by using a match pattern. For example I have myDict=['a', 'b', 'c', 'on_c_clicked', 'on_s_clicked', 's', 't', 'u', 'x', 'y'] and I want to return: ...
0
votes
1answer
49 views

Processing multiple files in Python, and matching on fields

I have a number of CSV files which I need to compare to one 'Master List', and determine, based on a unique ID, if these other files contain entries for that key. What would the easiest way to do ...
1
vote
1answer
65 views

Unix filename wildcards in Python?

How do Unix filename wildcards work from Python? A given directory contains only subdirectories, in each of which there is (among others) one file whose name ends with a known string, say _ext. The ...
1
vote
5answers
141 views

Finding daily patterns with machine learning

I have created a huge log of daily activity in the format [timestamp, location]. For example [{1365650747255, 'san francisco'}, {1365650743354, 'san francisco'}, {1365650741349, 'san mateo'}, ...
1
vote
2answers
66 views

Faster way to count number of matching 2nd elements between two list of tuples? - Python

Is there a faster way to count number of matching 2nd elements between two list of tuples? I have tuples as such and i was basically looping through them one tuple at a time: lstup1 = [('but', ...
3
votes
3answers
91 views

split string by asterisk python

I have just started learning python 2 days ago, sorry if i have made obvious mistake strings: "brake break at * time" --> ["at","time"] "strang strange I felt very *" --> ["very",""] I am ...
1
vote
4answers
88 views

Python pattern negative look behind

I am trying to figure out a regex pattern that matches a file path string in which a file called "cmd.exe" is NOT located in the "System32" folder OR any subfolder of it. The Pattern should match on ...
0
votes
3answers
91 views

Return All Matching Lines in a Logfile

I need some help with looping, or a better way to go about this. The answer may be obvious, but I'm new here and feel a mental block right now: I have a log file that looks like this and I am trying ...
0
votes
2answers
170 views

awk from Python: wrong subprocess arguments?

I need to run the following (working) command in Python: ip route list dev eth0 | awk ' /^default/ {print $3}' Using subprocess, I would have to do the following: first = "ip route list dev eth0" ...
1
vote
1answer
57 views

Negating previously matched word group

I am trying to extract content from a string that looks like this: A.content content content B.content C. content content content D.content And here is my regex pattern in Python: reg = ...
0
votes
2answers
93 views

Regex does not match but seems to be correct

I have a very weird problem: Using the same regex matches in several online services, but not in my local python 3.3 instance. re.search("ajaxHandler\('(?P<fp>[A-Z0-9]+)",rawdata).group("fp") ...
0
votes
1answer
112 views

Matching pattern in Python

I had a directory "/pcap_test" which contains several log files. Each file has a pattern like: Pkt: 1 (358 bytes), LIFE: 1, App: itunes (INTO), State: TERMINATED, Stack: /ETH/IP/UDP/itunes, Error: ...
0
votes
3answers
53 views

Most non-greedy regex match in python (or just simply regex in general

Im having an issue where my regex is matching too much. I've tried making it as non-greedy as possible. My RE is: define host( |\t)*{(.*\n)*?( |\t)*host_name( |\t)*HOST_B(.*\n)*?( |\t)*} meaning ...
1
vote
2answers
45 views

Creating a bigger List of Lists using a pattern

Let's say I have the following pattern: PATTERN = [[1, 2, 3],[4, 5, 6],[7, 8, 9]] and I want to use this to create the following: PATTERN | HORIZONTAL_MIRROR (PATTERN) VERTICAL_MIRROR(PATTERN) | ...
1
vote
2answers
91 views

Regex: How do I exclude commas when in my pattern?

I want to find the first number that is sandwiched with commas on either end, and I came up with this: m = re.search("\,([0-9])*\,",line) However, this returns to me the number with the commas, ...
3
votes
1answer
155 views

Artificial Intelligence for Rule Based Filtering with Python

I have an academic project to build an application to determine the "feeling" of consumer toward brands: whether it's positive, negative, or neutral. However, I'm stuck with no idea how to get the ...
1
vote
1answer
118 views

python regex pattern doesn't match in string even matching in testers (re-try, regex coach, http://ksamuel.pythonanywhere.com)

I've build a regex pattern to my target: a string with data obtained from a CSV file. I'm an almost completely newbie in programming, but i'm really stuck in this step, and i've tried hard to fix the ...
-3
votes
2answers
94 views

Extracting string/values from a large text/dat file [closed]

I want to extract the "Drops: XXXXX" from a text file whose text pattern looks something like this: Pkts: 215104502 Bytes: 202537648280 Drops: 1302599 Pkts: 55330252 Bytes: 52018951784 Drops: ...
6
votes
2answers
68 views

Regex in Python - Using groups

I am new to regex, why does this not output 'present'? tale = "It was the best of times, ... far like the present ... of comparison only. " a = re.compile('p(resent)') print a.findall(tale) ...
0
votes
2answers
312 views

Print line containing “word” python

I would like to print ONLY the line which contains "Server" in the below piece of output: Date: Sun, 16 Dec 2012 20:07:44 GMT Expires: -1 Cache-Control: private, max-age=0 Content-Type: text/html; ...
0
votes
3answers
107 views

Pattern matching with multiple nonspace characters

I have the following string data: data = "*****''[[dogs and cats]]''/n" I would like to use regular expressions in python to extract the string. All the data is encapsuled in the double quotes " ". ...
2
votes
4answers
95 views

URI regex pattern matching

Let's assume that we have the following series of URIs: A: /user/a/b/c B: /user/a/b/f/d C: /user/a/b/e D: /user/a/k/r I need a regular expression in python that matches all rules except rule B. ...
0
votes
3answers
169 views

Python:Pattern detection and rule generation

I have a need for a pattern interpretation and rule generating system. Basically how it will work is that it should parse through text and interpret patterns from it, and based on those interprtation, ...
0
votes
3answers
292 views

Pattern Matching in Python

This question might go closer to pattern matching in image processing. Is there any way to get a cost function value, applied on different lists, which will return the inter-list proximity? For ...
5
votes
1answer
210 views

Are there pattern matching functions in Python like this?

I just found the pattern matching feature in Racket very powerful. > (match '(1 2 3) [(list a b c) (list c b a)]) '(3 2 1) > (match '(1 2 3) [(list 1 a ...) a]) '(2 3) > (match '(1 2 3) ...
1
vote
2answers
244 views

matching headers in fasta files with python

I have two files: the first is a fasta file with a header and sequence and the second is composed of only headers. File_1: >DF94KKQ1|265|D0M1LACXX|3|2103|4637|10742|1|N|0|TGACCA ...
-1
votes
3answers
230 views

Alternative language for pattern-matching

I'm writing a program in Mathematica that relies on pattern-matching to perform payroll and warrant of payment verification. The crux of the problem is to compare different data files (both CSV and ...
3
votes
5answers
234 views

Python finding patterns within large group of numbers? [duplicate]

I'm working with a list of lists that have the periods of continued fractions for non-perfect square roots in each of them. What I'm trying to do with them is to check the size of the largest ...
-4
votes
3answers
138 views

removing interlopers from a legal numbered pattern

I have a list of numbers that follow the legal numbering scheme The list looks like this - ['1', '1', '1.1', '1.2', '1.3', '1.4', '1.5', '2', '1.6', '2', '2.1', '2.2', '2.3', '2.4', '3', '2.5', ...
1
vote
4answers
276 views

longest common sequence group

Given the following lines of text TOKYO-BLING.1 H02-AVAILABLE TOKYO-BLING.1 H02-MIDDLING TOKYO-BLING.1 H02-TOP TOKYO-BLING.2 H04-USED TOKYO-BLING.2 H04-AVAILABLE TOKYO-BLING.2 H04-CANCELLED ...
7
votes
1answer
126 views

assigning two variables to one list slice

Is it possible to assign to a list slice in one go, that would achieve the following as: mylist = [1,2,3,4,5,6,7] xs = mylist[:-1] x = mylist[-1] xs == [1,2,3,4,5,6] x == 7 I know I can write ...
2
votes
2answers
220 views

Protein sequence pattern-matching python

I'm working on a matching algorithm for protein sequences. I'm starting with an aligned protein sequence, and I am attempting to convert a mis-aligned sequence into the correctly aligned one. Here is ...
2
votes
4answers
198 views

Finding locations where two strings differ

I have two extremely long sequences of words. I need to find places where they differ. For example, if the input is 1st sequence: A B C D E F G 2nd sequence: A X D Y Z W G (each character here ...
1
vote
3answers
170 views

pattern matching, tuples and multiplication in Python

What is be best way to reduce this series of tuples ('x', 0.29, 'a') ('x', 0.04, 'a') ('x', 0.03, 'b') ('x', 0.02, 'b') ('x', 0.01, 'b') ('x', 0.20, 'c') ('x', 0.20, 'c') ('x', 0.10, 'c') into: ...
-1
votes
1answer
74 views

No output generated while using python dictionary

I'm trying to match two txt files and then saving the index of matched locations in a python dictionary called tmp. Now I'm trying to print the content between the start index and end index based on ...
0
votes
2answers
206 views

Regular expression to parse word structure

I'm trying to build my first non-trivial regular expression (for use in Python), but struggling. Let us assume that a word in language X (NOT English) is a sequence of minimal 'structures'. Each ...
1
vote
1answer
52 views

Can you place an instance of a member of a list within a regex to match in python?

So essentially I am trying to read lines from multiple files in a directory and using a regex to specifically find the beginnings of a sort of time stamp, I want to also place an instance of a list of ...
0
votes
2answers
127 views

match pattern between symbols, after given pattern

I would like to find the first occurrence of a string, after a certain other string, and between a certain pattern. The documents that I am parsing are not xml, but have similar rules of start/end. ...
0
votes
1answer
616 views

list of numbers - how do I find repeating patterns?

I have a list of numbers. There are repeating patterns among a lot of noise. sample data: ...
1
vote
3answers
887 views

Python: How to get multiple elements inside square brackets

I have a string/pattern like this: [xy][abc] I try to get the values contained inside the square brackets: xy abc There are never brackets inside brackets. Invalid: [[abc][def]] So far I've ...
0
votes
4answers
383 views

Phrase matching using regex and Python

I have some short phrases that I want to match on. I used a regex as follows: (^|)(piston|piston ring)( |$) Using the above, regex.match("piston ring") matches on "piston". If I change the regex ...
1
vote
2answers
112 views

How to format multiple python datetime instances to a simple format?

I've got a Django app that needs to take a list of multiple datetimes and print out a simple string that explains what the pattern is. Example: With 3 datetime instances for Monday, Wednesday, and ...
1
vote
1answer
122 views

SymPy: How to get values from expression

I am trying to write a simple SymPy function. a = Wild('a') b = Wild('b') p = Wild('p') q = Wild('q') ... if (U).match(b/(a+s)): return b*exp(-a*t) Lets say that U = 3/(7+s). I would like my ...
7
votes
2answers
235 views

Count overlapping regex matches once again

How can I obtain the number of overlapping regex matches using Python? I've read and tried the suggestions from this, that and a few other questions, but found none that would work for my scenario. ...
1
vote
4answers
144 views

replacing using regex python

I have a sentence like this s = " zero/NN divided/VBD by/IN anything/NN is zero/NN" I need to replace all the words with tags to just tags . Output should be s = "NN VBD IN NN is NN" I ...
4
votes
6answers
301 views

Algorithm to match 2 lists with wildcards

I'm looking for an efficient way to match 2 lists, one wich contains complete information, and one which contains wildcards. I've been able to do this with wildcards of fixed lengths, but am now ...
1
vote
3answers
245 views

How to extract parent html tag in Python by matching the string

I need to extract the parent tags in html by matching the string in html. (i.e) I have many raw html sources. Each source contains the text value "VIN:*"** with some characters. This text ...
3
votes
1answer
295 views

What is wrong with my regex Pattern to find recurring cycles in Python?

I want to match any string that has a recurring cycle. Like in this data: 3333333333333333333333333333333333333333 / 1 digit cycle(3) 1666666666666666666666666666666666666666 / 1 digit cycle(6) ...

1 2