String-O-Matic Technical Support
Frequently Asked Questions
1. How are carriage returns represented?
2. How can a string be deleted?
3. Error: Cannot create a file when that file already exists.
4. How can null characters be removed?
5. Is it possible to recursively enter subdirectories?
6. Does String-O-Matic work on Word/Access/Excel files?
If you still can't solve the problem, you may contact our technical support department. However, please be aware of the following:
- Email support is unlimited and free. Telephone support must be approved and scheduled in advance.
- Technical support can assist with the software's configuration, but within limits. Sometimes configuration requires intimate knowledge of your business and may necessitate a Systems Analyst.
- Technical support is staffed Monday through Friday, 10:00am - 6:00pm Central Time (GMT-6:00). Of course, you can send us email any time.
Click here to send an email to Gammadyne Technical Support. We value your feedback and appreciate your interest in our software!
Answers
If Single String Mode is checked, simply press the Enter key. Otherwise, to represent a carriage return/linefeed pair of characters, first set the "Canonicalization Mode" setting (on the Options folder) to "URL". Then, use this string wherever you wish to represent a carriage return/linefeed pair:
%0D%0A
Notes:
- The "%0D" represents the carriage return, which is ASCII code 13 (0D in hexadecimal).
- The "%0A" represents the linefeed, which is ASCII code 10 (0A in hexadecimal).
- On the Windows platform, a carriage return should almost always be followed by a linefeed.
A string can be deleted by specifying an empty replacement string. However, String-O-Matic will balk if the number of search strings does not match the number of replacement strings. To avoid this, specify one last search string that is a random series of characters (that does not appear in the files), along with a bogus replacement string.
Alternatively, you can check the "Single String Mode" option, leaving the replacement string empty. However, you will only be able to delete one string at a time using this method.
Disable Norton Anti-Virus Auto-Protect.
Use the text "%00" to represent a null character. Leave the replacement string empty. Set the "Canonicalization Mode" to "URL". "Whole Word" should be unchecked.
Yes, in the file specification, add the "/s" switch to the end of a line. Here's an example:
c:\foo\*.cpp /s
No, these files are sensitive to changes in the length of certain strings. However, it might work if the length of the replacement strings are the same as the search strings. Always make a backup before using String-O-Matic!