Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: data manipulation

by BillKSmith (Monsignor)
on Feb 28, 2021 at 21:27 UTC ( [id://11128919]=note: print w/replies, xml ) Need Help??


in reply to data manipulation

It really is not possible to overwrite data in file. You must replace the file with edited version of itself. (This would be true of any language) The perl runtime flags /p and /i should be a big help in doing this.

Process the file one line at a time.

  • If the current line is a 'Parameters' line, extract the vector into a global array.
  • Else if it is a 'Name' line, extract the block number into a global scalar.
  • Else if it is a 'LowerLimit' line, update the value. (use $vector[$block])
  • Else if it is a 'UpperLimit' line, update the value.
  • Else do nothing

If you still have problems, post explicit questions.

Bill

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11128919]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-04-25 07:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found