![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Python - how to get rid of whitespace | jhampt | Shell Programming and Scripting | 5 | 04-21-2009 01:24 AM |
| remove whitespace | nickg | UNIX for Dummies Questions & Answers | 2 | 12-17-2008 01:13 PM |
| python code...convert to ksh or sh | amon | Shell Programming and Scripting | 3 | 01-22-2007 11:13 AM |
| Code conversion from JSP to PYTHON | csaha | Shell Programming and Scripting | 1 | 03-21-2006 01:15 AM |
| trim whitespace? | msteudel | Shell Programming and Scripting | 4 | 07-07-2005 07:57 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Help with Python Code Whitespace
Hello All,
I have some python code that pulls together titles and displays them on web pages. Here is the section of code I am struggling with: #string to grab title titlePattern =r'''\s*(\([^\)]+\))?(?P<title>.*)''' #returns the title part of the subject line def getTitle (self,data): return re.search ( PartParser.titlepattern, self.getSubject (data), re.X ).group ("title) This code will print out a title with whitespace in the midde od the title ie: This is a (whitespace here, spaces or tabs) great day. I am trying to use join and split to make the tile read ie: This is a great day. I believe I can remove the whitespace with newtitlePattern = ' '.join(titlePattern(1).split()) and PartParser.newtitlePattern but I an not sure where to put this in the code. Please help |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|