HTML/CSS How Can I Search for Specific Characters in .html and .txt Files Offline?

AI Thread Summary
The discussion centers on the challenges of searching for specific characters within .html and .txt files offline, particularly in Windows Vista. Users express frustration with Vista's search capabilities, noting that it primarily searches for filenames rather than content within files. Suggestions include utilizing the search functionality in Windows XP, which allows for phrase searches within files. Additionally, users recommend exploring Google Desktop Search or using the command line "find" command in Windows XP, which offers various options for searching text strings in files. The command provides functionalities such as counting lines, ignoring case, and displaying line numbers, making it a useful tool for offline text searches.
Ara macao
Messages
26
Reaction score
0
So I want to look for specific characters within my .html and .txt files offline. But even when I google offline search engine, I can't find a suitable search engine. Windows Vista Search doesn't seem to have a search engine that works for strings within particular files (it just seems to work for filenames).
 
Technology news on Phys.org
I haven't used Vista, I'm running xp, but in the xp search there is a box to search for a phrase within files... anyone with vista want to comment?
 
The first thing I would try is the XP search mentioned above. Then I would probably check out Google desktop search or program one to do it myself.
 
There is a "find" command in windows xp's command window. Try going to start, run, type in "cmd," then type "find /?" and see if this will work for you if the "search for a phrase within files" suggestion doesn't work right for you.

Actually, here's the printout from running "find /?"
C:\>find /?
Searches for a text string in a file or files.

FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] "string" [[drive:][path]filename[ ...]]

/V Displays all lines NOT containing the specified string.
/C Displays only the count of lines containing the string.
/N Displays line numbers with the displayed lines.
/I Ignores the case of characters when searching for the string.
/OFF[LINE] Do not skip files with offline attribute set.
"string" Specifies the text string to find.
[drive:][path]filename
Specifies a file or files to search.

If a path is not specified, FIND searches the text typed at the prompt
or piped from another command.
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Back
Top