473,505 Members | 13,807 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Regular Expressions

How do I change only the first occurence of a token in a string?

How do I change only the nth occurence of a token in a string?

How do I change the first alpha character after the nth occurence of a
token in a string?
The answer to these questions will allow me to display raw text as
beautiful magazine style layouts using style sheets without manually
altering each document.

Jul 17 '05 #1
3 4139
> How do I change only the first occurence of a token in a string?
How do I change only the nth occurence of a token in a string?
How do I change the first alpha character after the nth occurence of a
token in a string?


These functions, either alone (preg-match, less convenient: preg_replace)
or in combination with substr will do.

Find details here:
http://de3.php.net/manual/en/function.substr.php
http://de3.php.net/manual/en/function.preg-match.php
http://de3.php.net/manual/en/function.preg-replace.php

And, please check for the meaning of RTFM.
(one of them is: read the f......riendly manual)
Marek

bn*****@g214mx.net
(remove numbers to despam)
Jul 17 '05 #2
On 8 Feb 2005 09:40:27 -0800
"petrovitch" <we*******@deltafarms.com> wrote:
How do I change only the first occurence of a token in a
string?
Well, only the first occurence is simpler than it seems.

$string = 'lalalalalalalalal';
$p = strpos($string, 'a');

if ($p === false)
exit;

$string{$p} = 'R'; /* replacement letter */

print $string;
How do I change only the nth occurence of a token in a string?
You don't want only the last, right? You want to pass a value
like 5, so you can change the 5th occurrence of a token, right?

I think you can use the same approach above. Consider this
function here. There can be bugs here, but hopefully you get the
idea.

function getpos($s,$c,$n) {

$i = $k = 0;
for ( ;; ) {
$_p=strpos($s, $c, $i);
if( $_p === false) break;

$i = $_p + 1; ++$k; $p = $_p;
}

if( $k < $n ) return -1;

return $p;
}

And then you'd use this way:

$p = getpos('sometimes', 'e', 2);
$string{$p} = 'R'; print $string;

That is, you want the position of the letter 'e' at its second
occurrence. If there isn't a second occurrence, then -1 is
returned.
How do I change the first alpha character after the nth
occurence of a token in a string?
Well, with the function above you get the position of the token,
then you search the original string for the first alpha char
starting from the return of getpos(). It shouldn't be hard, I'll
leave that to you.

In C, there are macros/functions like isspace(), isalpha(), so
you can increment your array index (string index, however PHP
calls it) and at the first time you get an alpha, you get the
position from your index/counter...

Look for something like in PHP or write a function to do it.
Write back if you need further help.
The answer to these questions will allow me to display raw text
as beautiful magazine style layouts using style sheets without
manually altering each document.


I think I realize one problem with my suggestions. What you
called token, I assumed it was a single character... if you need
to look for strings, you will need to adapt the code.

I hope it helps, though.
Jul 17 '05 #3
On 8 Feb 2005 09:40:27 -0800, petrovitch <we*******@deltafarms.com> wrote:
How do I change only the first occurence of a token in a string?

How do I change only the nth occurence of a token in a string?

How do I change the first alpha character after the nth occurence of a
token in a string?
The answer to these questions will allow me to display raw text as
beautiful magazine style layouts using style sheets without manually
altering each document.


Change first occurance:
preg_replace("/test/","cake",$text,1);
Use the limit parameter to do just one replace.

Change the 3rd occurance + next character. It isn't nice, but works.
preg_replace("/((?:.*?test.*?){2})test(\s*)(\w)(.*)/s","\\1cake\\2<span>\\3</span>\\4",$text);
Passes two occurances, to replace the third.
Puts span tags around the next alpha char.

Hope this helps.

--
Stian
Jul 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
2418
by: Michael McGarry | last post by:
Hi, I am horrible with Regular Expressions, can anyone recommend a book on it? Also I am trying to parse the following string to extract the number after load average. ".... load average:...
1
4155
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...
2
4982
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...
4
5141
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...
7
3794
by: Billa | last post by:
Hi, I am replaceing a big string using different regular expressions (see some example at the end of the message). The problem is whenever I apply a "replace" it makes a new copy of string and I...
3
3008
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...
25
5129
by: Mike | last post by:
I have a regular expression (^(.+)(?=\s*).*\1 ) that results in matches. I would like to get what the actual regular expression is. In other words, when I apply ^(.+)(?=\s*).*\1 to " HEART...
1
4362
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...
13
7458
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...
12
2437
by: FAQEditor | last post by:
Anybody have any URL's to tutorials and/or references for Regular Expressions? The four I have so far are: http://docs.sun.com/source/816-6408-10/regexp.htm...
0
7298
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
7366
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...
1
7017
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5610
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,...
1
5026
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
4698
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...
0
3176
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
754
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
406
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.