How to replace a variable string within /* variable_string */ with x for each character in string?

Ask a Question related to PERL Miscellaneous, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. replace() string
      I am hoping that someone can help me out with this. I am new to using the replace() function ...
    2. Replace String
      Hello, I have a variable with the string: &amp&amp How can I replace this string with: &
    3. 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...
    4. 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
    5. 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...
  3. #2

    Default 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:
    >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;


    --
    Matija
    Matija Papec Guest

  4. #3

    Default 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

  5. #4

    Default 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;
    >
    >
    > Abigail
    Victor Guest

  6. #5

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139