Tagged Questions
2
votes
1answer
86 views
Regular expression to split a huge string into multiple sets of key-value pairs
I've a huge string which contains many sets, each is separated by ,. Each set has key-value pairs in it, each pair is separated by &.
Here is small example,
...
0
votes
1answer
45 views
How to remove tabs and newlines with a regex
In Python 3.x, the special re sequence '\s' matches Unicode whitespace characters including [ \t\n\r\f\v].
The following piece of code is intended to replace tabs and newlines with a space.
import ...
0
votes
2answers
22 views
Failure in finding '-<' substring using regex
The following is the target string.
July 17, 2007 –<br> September 25, 2009 <br> June 2007 - July 2010
I am trying to add a newline before <br> tags which DOES NOT follow -. Thus, ...
0
votes
2answers
40 views
How to write this in regular expression in Python?
I have a big HTML file from which I need to parse some data using Regular expression. The first is the name of restaurant. Hotel names are in this format:
Update:
<html><head>
<meta ...
0
votes
2answers
25 views
Urllib html not showing
When I use the Urllib module, I can call/print/search the html of a website the first time, but when I try again it is gone. How can I keep the html throughout the program.
For example, when I try:
...
0
votes
1answer
25 views
Attribute error for web crawler
When running the following code:
import urllib
import re
from urllib import request
import webbrowser
#email pattern
r'[\w._(),:;<>]+@[\w._(),:;<>][.]\w+'
# url pattern
...
-1
votes
0answers
55 views
Regex issue with getting stock data
I am trying to write this program to find out which stocks are good to buy. When I try to execute it, it gives me the following result:
msft 28.81
Traceback (most recent call last):
File ...
0
votes
2answers
38 views
How can I get the offset where a Python regular expression search found a match?
I'm trying to get the offset of the match found using re.search().
http://docs.python.org/dev/howto/regex.html
This site explains how to get offsets of match components relative to the start of the ...
0
votes
1answer
73 views
Python: Regex a dictionary using user input wildcards
I would like to be able to search a dictionary in Python using user input wildcards.
I have found this:
import fnmatch
lst = ['this','is','just','a','test', 'thing']
filtered = fnmatch.filter(lst, ...
0
votes
2answers
63 views
How to parse this string
How to parse this string with python (maybe with re module) and create array with this data?
map: mp_rust
num score ping guid name lastmsg address ...
0
votes
1answer
43 views
Repeat a pattern while using re.sub
I would like to modify a string that looks like this:
...some fruit names... ORANGE ...some fruit names...
into something like this:
...some fruit names... ORANGE APPLE ...some fruit names...
...
0
votes
1answer
128 views
Python to search CSV file and return relevant info
I have a csv file with information about some computers on our network. I'd like to be able to type from the command line a quick line to bring me back the relevant items from the csv. In the ...
0
votes
3answers
111 views
Regexp for non-ASCII characters
Consider this snippet using regular expressions in Python 3:
>>> t = "Meu cão é #paraplégico$."
>>> re.sub("[^A-Za-z0-9 ]","",t,flags=re.UNICODE)
'Meu co paraplgico'
Why does it ...
1
vote
2answers
43 views
Find 3 or more repeating charaters in a string
I'm trying to find any occurrences of a character repeating more than 2 times in a user entered string. I have this, but it doesn't go into the if statement.
password = asDFwe23df333
s = ...
0
votes
1answer
34 views
Search Patterns replacement using lambda
I need to write into a file with Before and after search replacement patterns. I have written the below code. I have used function in writing to output file and it worked fine. But i have around 20 ...
0
votes
2answers
107 views
Python using re module to parse an imported text file
def regexread():
import re
result=''
savefileagain=open('sliceeverfile3.txt','w')
#text=open('emeverslicefile4.txt','r')
text='09,11,14,34,44,10,11, 27886637, 0\n561, Tue, ...
1
vote
1answer
70 views
Pulling valid data from bytestring in Python 3
Given the following bytestring, how can I remove any characters matching \xFF, and create a list object from what's left (by splitting on removed areas)?
...
0
votes
1answer
194 views
Writing a string to a file in python 3.3 failure
I'm using this python code to extract email addresses from a given file (source_file.txt) and to write those email addresses in a separate file. (I'm using python 3.3)
import urllib.request
import re
...
2
votes
3answers
90 views
Regex to extract nested patterns [duplicate]
Possible Duplicate:
Matching Nested Structures With Regular Expressions in Python
I can't wrap my head around this problem. I have a string like the following one:
Lorem ipsum dolor sit ...
0
votes
5answers
78 views
How to parse a formatted string using Python(re)
The string I want to parse is like "{average:12.1km/ltr}". I want to extract 12.1 from this string. The only way I know is using split(":") and split("km/ltr") or so, but these seem not useful. I want ...
0
votes
2answers
109 views
Extracting domain name from email in Python (including several special cases)
I am trying to extract just the domain name from email string, using Python. For a basic case such as abc@xyz.com, the following works well:
string.split("@")[1].rstrip(".com") #would give me "xyz"
...
0
votes
1answer
90 views
Algorithm to compare two files in Python
I wanted to create a python script to compare two log files (named foo.log and bar.log) generated by a tool.
The log files have lines out of which some can be ignored and some that cannot be ignored ...
1
vote
1answer
89 views
Python 3: How can I get os.getcwd() to play nice with re.sub()?
I am trying to replace some content in a file with the current working directory using python 3.3. I have:
def ReplaceInFile(filename, replaceRegEx, replaceWithRegEx):
''' Open a file and use a ...
0
votes
3answers
75 views
Finding part of string using regular expressions
I'm pretty new in Python and don't really know regex. I've got some strings like:
a = "Tom Hanks XYZ doesn't really matter"
b = "Julia Roberts XYZ don't worry be happy"
c = "Morgan Freeman XYZ all ...
1
vote
1answer
139 views
Error converting python-QRCode Module to Python 3
Good Afternoon, for several days i try, to getting the Python QR-Code Module from lincolnloop running under Python3. It runs perfect on Python 2.x. - https://github.com/lincolnloop/python-qrcode
In ...
0
votes
1answer
62 views
Regex splits more than once
I wrote this regex (in python 3): (?<![\u0410-\u042F])([.!?])(?=(\s)?(\s)?[\u0410-\u042F]|[\u04E8]|["]|[\u201C]|![0-9])
I use python's re.split()
It splits sentences in cyrillic. They're ...
1
vote
2answers
61 views
Why does this regex not work? Maybe because of double lookbehinds?
I have this regex: (?<![A-Z])(?<=[.!?])\s(?=[A-Z])
It splits a paragraph up into sentences (based on every whitespace).
I used it on this paragraph: Did he know that J. Smith is a name? The ...
0
votes
1answer
27 views
Regex loses last character
My regex is (?<![\u0410-\u042F])[.!?](?=(\s)?(\s)?[\u0410-\u042F]|[\u04E8]|["]|[\u201C]|![0-9])
I want to split a paragraph into sentences.
I do the regex with re.split() and I print the array
...
2
votes
2answers
88 views
First character is removed (Regex)
I have this regex:
(?<=[.!?])\s[A-Z]
I run it on this text:
The engineering plant, weapon and electronic systems, galley, and multitudinous other
equipment required to transform the new hull into ...
1
vote
1answer
60 views
AttributeError: based on re.compile pattern
I'm new at Python, and I'm pretty sure that the cause of this is simply a blonde moment, but it's been driving me up the wall the past few days.
I keep getting "elif conName.search(line): ...
0
votes
1answer
125 views
How to strip all attributes from an HTML td tag but rowspan in python?
Using python 3.3 I'm trying to make some regular expression substitutes unsuccessfully.
I want to strip all attributes of the td tags except the rowspan attribute (example td's at the end).
Using ...
0
votes
4answers
102 views
How to split string before number
I have a string 1 blahblahblah 2 sdsdsdsdsd 3 uuuuuu 4 eeee 5 abcdef
I would like to output
1 blahblahblah
2 sdsdsdsdsd
3 uuuuuu
4 eeee
5 abcdef
I have tried to add \n before every number by using ...
2
votes
1answer
28 views
Delete something after the first of the line or a / (Regex)
I'm attempting to remove something from a string using regex that matches substrings before /../ that either begin at the start or follow a / .
So far I have
...
-2
votes
3answers
94 views
Find alphabetic words [closed]
I need to write function, that check if word is alphabetical, for example
my_function('Hello!')
>> True
my_function('How')
>> True
my_function('F!@K')
>> False
...
2
votes
2answers
104 views
Number of words with non-English characters, special characters such as punctuation, or digits at beginning or middle of word
I need to count words with non-English characters, special characters such as punctuation, or digits at beginning or middle of word.
I trying to do it with re, and now it seems like
begin_searcher ...
0
votes
1answer
238 views
re.findall() and unicode like error in python 3
I'm using python 3.3.0 in Windows 8. Below code successfully runs in python 2.7.x
import re, urllib
import urllib.request
arg_end = "--"
url = ...
2
votes
2answers
290 views
regex matching between two strings in Python
I can't seem to find a way to extract all comments like in following example.
>>> import re
>>> string = '''
... <!-- one
... -->
... <!-- two -- -- -->
... <!-- ...
1
vote
3answers
69 views
Regex character match counter
I am writing a python script which requires to strip all the methods having a particular syntax from a source file.
Suppose I have some methods in a source file which goes like.
fn difflml(args)[
...
0
votes
1answer
141 views
Extract texts from webpages
I am trying to parse text from webpages, starting at this page. This page has links to the final page (this can be moved in to text file manually also; in order to avoid extra effort on coding). On ...
0
votes
2answers
67 views
How to parse a number from line
I have a text file as follows and am trying to create a new text file. There is number on each string with a parenthesis. I need some help on how to parse this number.
test.txt
itemA (3)
...
1
vote
1answer
92 views
how regex in Python3 deal with diacritics?
I try to parse with Python3 and the re module strings using the pattern "(c,c,c)" where c is one character to be choosed among (a,b,ë,ɪ̈ ). I wrote something like that :
src="(a,b,ɪ̈)"
pattern = ...
0
votes
2answers
67 views
Python Regex working different depending on the implementation?
I'm working on a file parser that needs to cut out comments from JavaScript code. The thing is it has to be smart so it won't take '//' sequence inside string as the beggining of the comment. I have ...
-3
votes
3answers
101 views
How retrieve the value using regular expression in python?
I wriiten code like this:
print re.findall(r'(<td width="[0-9]+[%]?" align="(.+)">|<td align="(.+)"> width="[0-9]+[%]?")([ \n\t\r]*)([0-9,]+\.[0-9]+)([ ...
-4
votes
1answer
106 views
How to get exact number in set of numbers using regular expression in python?
I have implementing program in command line and i written code like this:
import requests
import re
import sys
amount=[]
l=len(sys.argv)
from_=sys.argv[l-2]
to=sys.argv[l-1]
for i in range(1,l-2):
...
0
votes
3answers
145 views
how to convert perl regex to python?
I am trying to convert this regular expression from Perl to Python:
if ($line !~ /^\*NODE/i || $line !~ /^\*ELEMENT OUTPUT/i)
{
print $line;
}
I have written this Python code but it fails:
if ...
3
votes
2answers
404 views
Regular expression for alphanumeric string, underscore should not be a first or last character
I would like to have a regular expression that checks if a string contains only upper and lowercase letters, numbers, and underscores, but underscore should not be a first or last character in a ...
1
vote
3answers
139 views
Regex passes in Rubular but not in Python
import re
import urllib.request
file_txt = urllib.request.urlopen("ftp://ftp.sec.gov/edgar/data/1408597/0000930413-12-003922.txt")
pattern_item4= re.compile("(Item\\n*\s*4.*)Item\\n*\s*5")
...
1
vote
2answers
44 views
Python RegEx match results are too minimal, please advise
I'm stumped as to why this Python regex doesn't give me the expected results. In the example below, I am expecting the output to be "/w:document/w:body/w:sectPr" but the actual result (Python v3.2) is ...
0
votes
1answer
113 views
Python 3, regex repetition and str.format() - what's the right way?
I'd like to do regexp searches based on a variable's value.
In Py2.x this works very well:
pattern = re.compile(r"\b[a-zA-Z]{%(min_length)d,}\b" % locals())
When I try to port it to the new ...
0
votes
1answer
99 views
Regular expression: find function calls
I want to search a php file to find all calls to a functions I've defined in that file. I've got an array that contains all of the functions I want to search for. If the function's name is Foo, then ...



