Comparing strings - akin to Perl's "=~"

K

krumblebunk

Hello gurus,

I am learning Python to take the place of Perl in my toolbox of bits
and bobs, and writing something pretty simple in theory, but having a
hard time in Python with it - I am using a 3rd party module, and I am
sure the etiquette of this channel states that this is pure Python
questions only, but please bare with me in light of this, as my
question does indeed relate to Python only.

I am grabbing the output from a SQL statement (using PyGreSQL 'pg'
module), and when it returns the result, I am pulling it out as such:

try:
sc=pg.connect(dbname='mydb',host='dbhost',user='ppp')
except pg.InternalError:
print "Failed to execute SQL: %s" % sql
exit

for foo in sc.query(sql).dictresult(): <- this returns a dict of the
result
f=dict(foo)
for k in f.iteritems()
if k == '^Hostname': <-- need this sort of
behaviour - match a partial string.
print "%s" % f[3] <-- ..and if true, need to pull
out the 4th column on that line.

This breaks spectacularly -

any ideas?

thanks!

kb.
 
D

Diez B. Roggisch

Hello gurus,

I am learning Python to take the place of Perl in my toolbox of bits
and bobs, and writing something pretty simple in theory, but having a
hard time in Python with it - I am using a 3rd party module, and I am
sure the etiquette of this channel states that this is pure Python
questions only, but please bare with me in light of this, as my
question does indeed relate to Python only.

I am grabbing the output from a SQL statement (using PyGreSQL 'pg'
module), and when it returns the result, I am pulling it out as such:

try:
sc=pg.connect(dbname='mydb',host='dbhost',user='ppp')
except pg.InternalError:
print "Failed to execute SQL: %s" % sql
exit

for foo in sc.query(sql).dictresult(): <- this returns a dict of the
result
f=dict(foo)
for k in f.iteritems()
if k == '^Hostname': <-- need this sort of
behaviour - match a partial string.
print "%s" % f[3] <-- ..and if true, need to pull
out the 4th column on that line.

This breaks spectacularly -

any ideas?

Use the module "re" to create regular expressions & out of these
mather-objects that will give you what you need.

The idiom is roughly translated to this:

m = re.search(r"^Hostname')
if m:
...

Diez
 
C

Carsten Haese

for foo in sc.query(sql).dictresult(): <- this returns a dict of the
result
f=dict(foo)
for k in f.iteritems()
if k == '^Hostname': <-- need this sort of
behaviour - match a partial string.
print "%s" % f[3] <-- ..and if true, need to pull
out the 4th column on that line.

This breaks spectacularly -

Several observations:

* "breaks spectacularly" is not a useful description of a failure. If
you get an exception, show us the exception. If you get an unexpected
result, show us the result and tell us how it differs from the result
you expected.

* To check whether a string starts with a given string, use the
startswith() method: if k.startswith("Hostname"): ...

* Why the "f=dict(foo)"? Isn't foo already a dictionary?

* Since f is a dictionary, presumably keyed on column names, f[3] is
unlikely to work. You're going to have to use the name of the fourth
column to pull out the value you're looking for.

HTH,
 
K

krumblebunk

.....
Without a explicit Python value of what comes out of the sql query, I can only
guess. As example, assume the following data:

f = { 1: ['Hostname', 'blabla', 'person', 'john'],
2: ['MachineName', 'blabla', 'company', 'something']}

ie a dictionary of column number to rows.

Here you are only interested in the value part, and the code becomes.

for v in f.itervalues():
if v[0].startswith('Hostname'):
print v[3]

Many thanks for all your replies - this last snippet of code helped
me, extra thanks!

kb.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top