Regex Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreRegex Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 3rd, 2012, 03:10 AM
charlesdg charlesdg is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2012
Location: Brussels
Posts: 1 charlesdg User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 28 m 6 sec
Reputation Power: 0
Simple question: remove character

Hi,

I am very new with RegEx.

I have a variable containing 3 datas (Salary, Name, Job) separated by 3 separators: £ { }

The variable contains: £45000{Barak Obama}President

We user the regular expresion below to retrieve the first data:
£\s*(((?!£|{).)+)\s*{
The result is: £45000{

Problem: we want to remove the separators "£" and "{" to only have 45000
How is it possible with regular expressions ?

Thanks !

Reply With Quote
  #2  
Old July 3rd, 2012, 11:30 PM
abareplace abareplace is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2011
Posts: 29 abareplace User rank is First Lieutenant (10000 - 20000 Reputation Level)abareplace User rank is First Lieutenant (10000 - 20000 Reputation Level)abareplace User rank is First Lieutenant (10000 - 20000 Reputation Level)abareplace User rank is First Lieutenant (10000 - 20000 Reputation Level)abareplace User rank is First Lieutenant (10000 - 20000 Reputation Level)abareplace User rank is First Lieutenant (10000 - 20000 Reputation Level)abareplace User rank is First Lieutenant (10000 - 20000 Reputation Level)abareplace User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 8 h 25 m 9 sec
Reputation Power: 0
You should extract the first subexpression by using \1 or $1 in the replacement text. Depending on the programming language that you use, it will be $1 (Perl) or \1 (Python).

You can also use lookbehind/lookahead:

Code:
(?<=£)\d+(?=\s*{)


If the salary can contain only digits, you should use \d+

(((?!£|{).)+) can be replaced with shorter and more effective [^£{]+

Reply With Quote
  #3  
Old August 8th, 2012, 11:32 AM
micheal.kolman micheal.kolman is offline
Banned
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2012
Posts: 14 micheal.kolman Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 3 h 19 m 9 sec
Reputation Power: 0
You should get the very first subexpression by utilizing \1 or perhaps $1 inside substitute wording. With respect to the coding words which you work with, it'll be $1 (Perl) or perhaps \1 (Python).

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreRegex Programming > Simple question

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap