473,419 Members | 1,842 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,419 software developers and data experts.

replace characters in a string

hi!

i want to replace these characters:
Expand|Select|Wrap|Line Numbers
  1. sex_m-designer_bw-size_42
so that i have the argument string:
Expand|Select|Wrap|Line Numbers
  1. sex=m&designer=bw&size=42 
i am working under zope 3.
glad for any help you can give me (i am veryyyy new in python, so please speak slow).

thank you,
steven, vienna
Oct 11 '07 #1
2 25193
bartonc
6,596 Expert 4TB
hi!

i want to replace these characters:
Expand|Select|Wrap|Line Numbers
  1. sex_m-designer_bw-size_42
so that i have the argument string:
Expand|Select|Wrap|Line Numbers
  1. sex=m&designer=bw&size=42 
i am working under zope 3.
glad for any help you can give me (i am veryyyy new in python, so please speak slow).

thank you,
steven, vienna
Here, again, the replace() method of a string object will do the job nicely:
Expand|Select|Wrap|Line Numbers
  1. >>> s = "sex_m-designer_bw-size_42"
  2. >>> s = s.replace('_', '=')
  3. >>> s = s.replace('-', '&')
  4. >>> s
  5. 'sex=m&designer=bw&size=42'
  6. >>> 
Here, I have used Python's interactive interpreter (denoted by the '>>>' prompt) to run off a quick test of the idea. In interactive mode, all of the built-in types (most of which are true objects in the OOP sense of the term) and functions are available.

Hope I spoke slowly enough,
Barton
Oct 11 '07 #2
Barton,

you are the man!

you saved my day!
(and kept the doctor away)

hurray.
Oct 11 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

8
by: Eric Lilja | last post by:
Hello, I had what I thought was normal text-file and I needed to locate a string matching a certain pattern in that file and, if found, replace that string. I thought this would be simple but I had...
4
by: Locusta | last post by:
Hello, I have been struggeling for replacing a string in a string. The snippet from the program below replaces the <, & and > with the XML equivalent values. In the program, I allocate space...
3
by: JPSutor | last post by:
I want to be able to have a user type in a password to a text box and 1.) Capture the characters entered 2.) Replace typed chars with "*"
4
by: jpierson | last post by:
Hi, I'm having a few problems with the replace function for replacing characters in a textbox. "C:\" is the string i am tryin to remove ,with it a command I am sending does not work. ...
11
by: jarod1701 | last post by:
Hi, i'm currently trying to replace an unknown string using regular expressions. For example I have: user_pref("network.proxy.http", "server1") What do I have to do to replace the...
18
by: Umesh | last post by:
Do you have any answer to it? thx.
3
by: stephcsh | last post by:
Hi, I wanted to copy a data from table1 in db1 to table2 in db2, which has the same structure, with the PosgreSQL dblink funtion. The fields for both the tables are: id, first_name, last_name. ...
4
by: chriskaza81 | last post by:
hello i am very new in xsl ,xml so ....forgive me if i make spuped questions.. well i have the string e.g. <script> blabla bla </script> i want to replace in xsl the ...
4
by: vimalvisves | last post by:
Hi Friends, Any one know how to replace query string by slash delimeters, for example i want to replace query string www.websiteurl.com/PageName.aspx?Param1=Attribute1&Param2=Attribute2 as...
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: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

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.