i want to extract certain section of the text file. my input file:
-- num cell port function safe [ccell disval rslt]
"17 (BC_1, CLK, input, X)," &
"16 (BC_1, OC_NEG, input, X), " &-- Merged input/
" 8 (BC_1, D(8), input, X)," & -- cell 16 @ 1 -> Hi-Z
" 7 (BC_1, Q(1), output3, X, 16, 1, Z)," &
" 0 (BC_1, Q(8), output3,...
Search Result
Collapse
12 results in 0.0040 seconds.
Keywords
Members
Tags
-
how to use python to extract certain text in the file?
-
how to extract file path from a table of file in c++?
basically i extracted some attributes of file(name, file type, path etc) present in a directory and listed them in a c++ file, now i want to extract the file path only so that i can use it as an argument to open the respective file. thanks -
How to extract jpg image from hex?
I want to extract the jpg image from an Hex file. The hex file comes from a serial camera that outputs a hex stream in the serial port. I need to reconstruct the image.
The output of the camera is attached in the text file.
the code I'm using reads the hex values and convert them to ASCII and save the file as a .jpg.
When I try to open the "picture.jp g" with Photo Editor it reads the start FFD8 correctly... -
Converting HTML file into word document in C#
That is how to extract the word content in the html file and write it into a word file, is there a built in command where you can filter out all the code part, thanks -
How do you join rar files?
Hey, please forgive me but i couldn't find the right area.
now what i want to do is find out the manual steps that can be taken to join .rar files and/or their contents.
just like when you get a files from rapidshare and stuff.
i have not been able to find any f*ing people who can accually tell me the manual procedure.
so please don't just say, "extract it." and nothing else.... -
c++ getting the filename and path of an ofstream object
I'm passing an ofstream object to a function within my program. In that function, I'd like to extract the path and filename of the ofstream object, modify the filename only, create a new ofstream object using the old path and new filename and write something to it.
How do I get the path and filename of a passed ofstream object?
Code:std::ostream& Func::writeOut(std::ostream& out) { std::string sPath = getPath(out)
-
Extract text from a string?
here is the string:
DALJimmy,Darko, BeansDAB1466 N Scooby AveDAI1988,11,2 4DAQ
I want to extract "jimmy,darko,be ans", "1466 N Scooby Ave", & "1988,11,24 ". How can I go about doing this? Now I have some kind of idea how I want the script to be, I want to extract the text between DAL and DAB, DAB and DAI, etc. Can someone point me in the direction of finding a script for this? -
darkestknight43 started a topic Attempting to Output Multiple Values through Forms in PHP & SQL for Search Toolin PHPAttempting to Output Multiple Values through Forms in PHP & SQL for Search Tool
Hello, I've been working on this piece of code for quite a while. Essentially it is a Search Tool which pulls Mobile Home information from a database and displays listings based on the users input. When the results page attempts to acquire variables from the Search Tool, it only displays results based off of a single variable, not all of them, which needless to say doesn't give the correct listings. Here is an example snippet of the code I'm using...Last edited by Atli; Mar 17 '10, 10:34 AM. Reason: Fixed minor copy/paste errors. (Messed up highlighting) -
extract information from a string with a lot of spaces
ok I have this string and other similar( ull find them in the attachment)
"BRUNEI BANDAR SERI BEGAWAN 5770 343653"
I need to extract BRUNEI, BANDAR SERI BEGAWAN, 5770 and 343653
but i cant find a way to do it that work for all my string that i have..
Can someone help me on that plz..
thx... -
Extracting HTML link fragment
I recently decided to start learning Perl. I usually choose something useful for my first project in any language, so I decided to write a script to give information based upon a supplied MAC address.
Everything in the script works fine, until I try to display the MAC vendor.
In order to do so, I supply the MAC address as a query to a website which checks it against a database. That website then displays the vendor... -
Extract images from EML file
Hi, I need to extract the images (attached) of a .EML file.
Any help or ideas?
Thanks in advance. -
Extracting data from text file from different lines
Hi
I am confused about how to go about writing this program in perl.
I have a text file with data in columns 8 and 9. I need to extract the data value from column 8 from the line being read and then extract the data value in column 9 from the next line. This needs to be repeated for all lines in the file. So, i would be taking data from column 8 from lines 1,3,5,7,ect and column 9 from lines 2,4,6,8..... I need to move...