473,388 Members | 1,417 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 software developers and data experts.

use a regex or not?

I am looking for a function that takes an input string
and a pattern, and outputs a dictionary.

# @param s str, lowercase letters
# @param p str, lowercase and uppercase letters
# @return dict
def fill(s, p):
d = {}
....
return d

String s has characters from the lowercase letters.
String p is a pattern, a string of characters from the
lowercase and uppercase letters. The idea is to match
s with p, where lowercase letters have to match
exactly, and to fill variables (with an uppercase
letter name) with the rest of s. The variables are
collected in a dictionary with the resulting bindings.
A variable that occurs in more than one place in p must
bind to the same substring of s.

Tests:
fill('ab', p='aA') {'A': 'b'} fill('ab', p='Ab') {'A': 'a'} fill('bb', p='Ab') # no match {} fill('aa', p='Aa') {'A': 'a'} fill('aa', p='Ab') # no match {} fill('abb', p='aA') {'A': 'bb'} fill('aba', p='aAa') {'A': 'b'} fill('abb', p='aAa') # no match {} fill('abab', p='aAaA') # A-matches must be equal {'A': 'b'} fill('abac', p='aAaA') # no match {} fill('abac', p='aAaB')

{'A': 'b', 'B': 'c'}

Can you do it? Is trying a solution with a regex a
good idea?

Jul 19 '05 #1
3 1225
Oops, the 3rd test should be

fill('bb', p='Aa')

resulting in the empty dict {} because no binding for A can be found.

Jul 19 '05 #2
Joost Jacob wrote:
I am looking for a function that takes an input string
and a pattern, and outputs a dictionary.


Here is one way. I won't say it's pretty but it is fairly straightforward and it passes all your tests.

Kent

def fill(s, p):
"""
fill('ab', p='aA') {'A': 'b'}
fill('ab', p='Ab') {'A': 'a'}
fill('bb', p='Aa') # no match {}
fill('aa', p='Aa') {'A': 'a'}
fill('aa', p='Ab') # no match {}
fill('abb', p='aA') {'A': 'bb'}
fill('aba', p='aAa') {'A': 'b'}
fill('abb', p='aAa') # no match {}
fill('abab', p='aAaA') # A-matches must be equal {'A': 'b'}
fill('abac', p='aAaA') # no match {}
fill('abac', p='aAaB')

{'A': 'b', 'B': 'c'}
"""

# If s is longer than p the extra chars of s become part of the
# last item of s
if len(s) > len(p):
ss = list(s[:len(p)])
ss[-1] = ss[-1] + s[len(p):]
s = ss

d = {}
seen = {}

for s1, p1 in zip(s, p):
# Lower case have to map to themselves
if p1.islower() and s1 != p1:
# print 'Non-identity map for %s: %s' % (p1, s1)
return {}

try:
# Check for multiple mappings from p1
old_s = d[p1]

if old_s != s1:
# We saw this s before but the mapping is different
return {}

# We saw this s1, p1 before with the same mapping
continue

except KeyError:
# Check for multiple mappings to p1
if seen.get(s1, p1.lower()) != p1.lower():
return {}

# This is a new mapping
d[p1] = s1
seen[s1] = p1.lower()
# Strip out the lower case mappings
return dict((k, v) for k, v in d.iteritems() if k.isupper())

def _test():
import doctest
doctest.testmod()

if __name__ == "__main__":
_test()
Jul 19 '05 #3
Here's a hybrid solution, using pyparsing to parse your input pattern
string (p), and transforming it into a regexp string. Then uses
re.match using the regexp to process string (s), and then builds a
dictionary from the matched groups.

Download pyparsing at http://pyparsing.sourceforge.net.

-- Paul

===================
import re
from pyparsing import Word,OneOrMore

previousKeys = []
def createUpperKey(s,l,t):
if t[0] not in previousKeys:
ret = "(?P<%s>.*)" % t[0]
previousKeys.append(t[0])
else:
ret = "(?P=%s)" % t[0]
return ret

lowers = "abcdefghijklmnopqrstuvwxyz"
uppers = lowers.upper()
lowerLetter = Word(lowers,max=1)
upperLetter = Word(uppers,max=1).setParseAction(createUpperKey)
pattern = OneOrMore( lowerLetter | upperLetter )

def fill(s,p):
# reset keys found in p-patterns
del previousKeys[:]

# create regexp by running pyparsing transform
regexp = pattern.transformString(p) + "$"

# create dict from re-matched groups
match = re.match(regexp,s)
if match:
ret = dict( [ (k,match.group(k)) for k in previousKeys ] )
else:
ret = dict()
return ret

tests = [
('ab','aA'),
('ab','Ab'),
('bb','Aa'),
('aa','Aa'),
('aa','Ab'),
('abb','aA'),
('aba','aAa'),
('abbba','aAa'),
('abbbaba','aAa'),
('abb','aAa'),
('abab','aAaA'),
('abac','aAaA'),
('abac','aAaB'),
]

for t in tests:
print t,fill( *t )

================
Gives:
('ab', 'aA') {'A': 'b'}
('ab', 'Ab') {'A': 'a'}
('bb', 'Aa') {}
('aa', 'Aa') {'A': 'a'}
('aa', 'Ab') {}
('abb', 'aA') {'A': 'bb'}
('aba', 'aAa') {'A': 'b'}
('abbba', 'aAa') {'A': 'bbb'}
('abbbaba', 'aAa') {'A': 'bbbab'}
('abb', 'aAa') {}
('abab', 'aAaA') {'A': 'b'}
('abac', 'aAaA') {}
('abac', 'aAaB') {'A': 'b', 'B': 'c'}

Jul 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Jon Maz | last post by:
Hi All, Am getting frustrated trying to port the following (pretty simple) function to CSharp. The problem is that I'm lousy at Regular Expressions.... //from...
9
by: Tim Conner | last post by:
Is there a way to write a faster function ? public static bool IsNumber( char Value ) { if (Regex.IsMatch( Value.ToString(), @"^+$" )) { return true; } else return false; }
20
by: jeevankodali | last post by:
Hi I have an .Net application which processes thousands of Xml nodes each day and for each node I am using around 30-40 Regex matches to see if they satisfy some conditions are not. These Regex...
17
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher ...
6
by: Extremest | last post by:
I have a huge regex setup going on. If I don't do each one by itself instead of all in one it won't work for. Also would like to know if there is a faster way tried to use string.replace with all...
7
by: Extremest | last post by:
I am using this regex. static Regex paranthesis = new Regex("(\\d*/\\d*)", RegexOptions.IgnoreCase); it should find everything between parenthesis that have some numbers onyl then a forward...
3
by: aspineux | last post by:
My goal is to write a parser for these imaginary string from the SMTP protocol, regarding RFC 821 and 1869. I'm a little flexible with the BNF from these RFC :-) Any comment ? tests= def...
15
by: morleyc | last post by:
Hi, i would like to remove a number of characters from my string (\t \r \n which are throughout the string), i know regex can do this but i have no idea how. Any pointers much appreciated. Chris
4
by: CJ | last post by:
Is this the format to parse a string and return the value between the item? Regex pRE = new Regex("<File_Name>.*>(?<insideText>.*)</File_Name>"); I am trying to parse this string. ...
0
by: Karch | last post by:
I have these two methods that are chewing up a ton of CPU time in my application. Does anyone have any suggestions on how to optimize them or rewrite them without Regex? The most time-consuming...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.