Ask a Question related to PERL Miscellaneous, Design and Development.
-
Victor #1
How to replace a variable string within /* variable_string */ with x for each character in string?
How to replace a variable string within /* variable_string */ with x
for each character in string?
The string may span on multiple lines.
for eaxmple:
/* string */ ->
/* xxxxxx */
/* stringstring */ ->
/* xxxxxxxxxxxx */
/* string1
string2
*/ ->
/* xxxxxxx
xxxxxxx
*/
Thanks,
Victor
Victor Guest
-
replace() string
I am hoping that someone can help me out with this. I am new to using the replace() function ... -
Replace String
Hello, I have a variable with the string: &amp&amp How can I replace this string with: & -
replace spaces with 0's in a string
I have a string like this '00023MJKOP16598 09 00' I need to replace spaces in this string with zeros so that the spaces are gone. So it would... -
Replace value in a string
Hi ! I want to replace 'xxx' with '12' (for example) in a string $chaine. How can I do ? Thanks for your answers Eric -
replace string in file
Hi! I am using PHP4.3.3 on a windows XP platform. I am building a small program that will allow my students to subscribe and unsubscribe from... -
Matija Papec #2
Re: How to replace a variable string within /* variable_string */ with x for each character in string?
X-Ftn-To: Victor
[email]gvictor97@yahoo.com[/email] (Victor) wrote:$code =~ s{/\*(.+?)\*/}{>How to replace a variable string within /* variable_string */ with x
>for each character in string?
>
>The string may span on multiple lines.
>
>for eaxmple:
>
>/* string */ ->
>/* xxxxxx */
>
>/* stringstring */ ->
>/* xxxxxxxxxxxx */
>
>/* string1
> string2
>*/ ->
>
>/* xxxxxxx
> xxxxxxx
>*/
(my $com = $1) =~ s/\S/x/g;
"/*$com*/";
}ges;
--
Matija
Matija Papec Guest
-
Abigail #3
Re: How to replace a variable string within /* variable_string */ with x for each character in string?
Victor (gvictor97@yahoo.com) wrote on MMMDCLXIII September MCMXCIII in
<URL:news:ab759f.0309111049.48aafe05@posting.googl e.com>:
^^ How to replace a variable string within /* variable_string */ with x
^^ for each character in string?
^^
^^ The string may span on multiple lines.
^^
^^ for eaxmple:
^^
^^ /* string */ ->
^^ /* xxxxxx */
^^
^^ /* stringstring */ ->
^^ /* xxxxxxxxxxxx */
^^
^^ /* string1
^^ string2
^^ */ ->
^^
^^ /* xxxxxxx
^^ xxxxxxx
^^ */
use Regexp::Common;
$str =~ s{$RE{comment}{C}{-keep}}{my $x = $3; $x =~ s!\S!x!g; "/*$x*/"}ge;
Abigail
--
sub _ {$_ = shift and y/b-yB-Y/a-yB-Y/ xor !@ _?
exit print :
print and push @_ => shift and goto &{(caller (0)) [3]}}
split // => "KsvQtbuf fbsodpmu\ni flsI " xor & _
Abigail Guest
-
Victor #4
Re: How to replace a variable string within /* variable_string */ with x for each character in string?
Thanks Matija your help.
--Victor
Abigail <abigail@abigail.nl> wrote in message news:<slrnbm1u0o.6v3.abigail@alexandra.abigail.nl> ...> Victor (gvictor97@yahoo.com) wrote on MMMDCLXIII September MCMXCIII in
> <URL:news:ab759f.0309111049.48aafe05@posting.googl e.com>:
> ^^ How to replace a variable string within /* variable_string */ with x
> ^^ for each character in string?
> ^^
> ^^ The string may span on multiple lines.
> ^^
> ^^ for eaxmple:
> ^^
> ^^ /* string */ ->
> ^^ /* xxxxxx */
> ^^
> ^^ /* stringstring */ ->
> ^^ /* xxxxxxxxxxxx */
> ^^
> ^^ /* string1
> ^^ string2
> ^^ */ ->
> ^^
> ^^ /* xxxxxxx
> ^^ xxxxxxx
> ^^ */
>
>
> use Regexp::Common;
>
> $str =~ s{$RE{comment}{C}{-keep}}{my $x = $3; $x =~ s!\S!x!g; "/*$x*/"}ge;
>
>
> AbigailVictor Guest
-
Victor #5
Re: How to replace a variable string within /* variable_string */ with x for each character in string?
Thanks Matija for your help.
--V
Matija Papec <mpapec@yahoo.com> wrote in message news:<16j1mvoj9dvddd3ehdovma1ke10hnn3o0m@4ax.com>. ..> X-Ftn-To: Victor
>
> [email]gvictor97@yahoo.com[/email] (Victor) wrote:>> >How to replace a variable string within /* variable_string */ with x
> >for each character in string?
> >
> >The string may span on multiple lines.
> >
> >for eaxmple:
> >
> >/* string */ ->
> >/* xxxxxx */
> >
> >/* stringstring */ ->
> >/* xxxxxxxxxxxx */
> >
> >/* string1
> > string2
> >*/ ->
> >
> >/* xxxxxxx
> > xxxxxxx
> >*/
> $code =~ s{/\*(.+?)\*/}{
> (my $com = $1) =~ s/\S/x/g;
> "/*$com*/";
> }ges;Victor Guest



Reply With Quote

