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

Regular Expressions

3
Hi guys,
i need replace all specified characters (in this case its "N") between the square parentheses by the question mark ("?"). I have dynamic/variable string mask, for example something like CON[NNNN][YYYY] and as output i need to get CON[????][YYYY]. So simply explained replace everything between parentheses by specified sign as many times as the length of match is.

I'm looking for something like:
preg_replace("/\[N+\]/","?","CON[NNNN][YYYY]");

As expected, this pattern replaces just match [NNNN] by one ? instead of [????].

Thanks for any reply.
Nov 7 '11 #1
5 1099
Dormilich
8,658 Expert Mod 8TB
not sure if there’s a better way, but as a temporary work-around you can use the match (from a preg_match()) in a str_replace() to simply replace all Ns and then replace the result of that in the original string.
Nov 8 '11 #2
exidas
3
I don't know if i exactly understand what you mean. Can you write down some simple example of your imagine? Do you mean sthg like this?

str_replace(preg_match('/(\[)(N+)(\])/', '?', $mask));

Cause this will replace match with single question mark again. Thanks very much.
Nov 8 '11 #3
Dormilich
8,658 Expert Mod 8TB
something along
Expand|Select|Wrap|Line Numbers
  1. // somewhat pseudo code
  2. preg_match('#\[(N+)\]#', $str, $matches);
  3. $x   = str_replace('N', '?', $match1)
  4. $str = str_replace($match0, $x, $str);
Nov 8 '11 #4
exidas
3
works great with some differences... final function:

Expand|Select|Wrap|Line Numbers
  1.     protected function prepare_mask_to_edit($identifier,$required_mask=null) {
  2.     $mask = (!is_null($required_mask)) ? $required_mask : $this->mask;
  3.     preg_match('#\[('.$identifier.'+)\]#', $mask,$matches);
  4.         if(is_array($matches)) {
  5.             $question_mark = str_replace($identifier,'?',$matches[1]);
  6.             $editable_mask = str_replace($matches[1], $question_mark, $mask);
  7.         }
  8.     return $editable_mask;
  9.     }
Nov 8 '11 #5
Dormilich
8,658 Expert Mod 8TB
note: $matches is always an array. the questions is whether the array length is correct or if there are any findings.
Nov 8 '11 #6

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

Similar topics

1
by: Kenneth McDonald | last post by:
I'm working on the 0.8 release of my 'rex' module, and would appreciate feedback, suggestions, and criticism as I work towards finalizing the API and feature sets. rex is a module intended to make...
11
by: Martin Robins | last post by:
I am trying to parse a string that is similar in form to an OLEDB connection string using regular expressions; in principle it is working, but certain character combinations in the string being...
4
by: GenoJoe | last post by:
If you are not new to VB.NET but are new to regular expressions, you need to get a free copy of "Pragmatic Guide to Regular Expressions for VB.NET Programmers". I wrote this guide because all of the...
2
by: Sehboo | last post by:
Hi, I have several regular expressions that I need to run against documents. Is it possible to combine several expressions in one expression in Regex object. So that it is faster, or will I...
2
by: cleo | last post by:
I'm experimenting with Regular Expressions and Windows Forms. Frequently I want a value to be either a valid pattern or empty. For example a Zip code must be 5 digits or may be empty. I know that...
4
by: Együd Csaba | last post by:
Hi All, I'd like to "compress" the following two filter expressions into one - assuming that it makes sense regarding query execution performance. .... where (adate LIKE "2004.01.10 __:30" or...
3
by: a | last post by:
I'm a newbie needing to use some Regular Expressions in PHP. Can I safely use the results of my tests using 'The Regex Coach' (http://www.weitz.de/regex-coach/index.html) Are the Regular...
1
by: Allan Ebdrup | last post by:
I have a dynamic list of regular expressions, the expressions don't change very often but they can change. And I have a single string that I want to match the regular expressions against and find...
10
by: Thomas Dybdahl Ahle | last post by:
Hi, I'm writing a program with a large data stream to which modules can connect using regular expressions. Now I'd like to not have to test all expressions every time I get a line, as most of...
13
by: Wiseman | last post by:
I'm kind of disappointed with the re regular expressions module. In particular, the lack of support for recursion ( (?R) or (?n) ) is a major drawback to me. There are so many great things that can...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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.