J
John
I have a rather lengthy string like this:
$page = <<HERE;
<input type="hidden" value="%1">
</form>
....(a couple hundred html lines)
HERE
$page=~s/%1/$myvar/ge;
print $page;
Is there some limit to how long a string the $page variable can hold?
Another question:
The the line
$page=~s/%1/$myvar/ge;
processes the lengthy string. Will I run into some limitations there?
will that cause problems?
$page = <<HERE;
<input type="hidden" value="%1">
</form>
....(a couple hundred html lines)
HERE
$page=~s/%1/$myvar/ge;
print $page;
Is there some limit to how long a string the $page variable can hold?
Another question:
The the line
$page=~s/%1/$myvar/ge;
processes the lengthy string. Will I run into some limitations there?
will that cause problems?