Tagged Questions

A character code that does not represent a written symbol, and is usually a printing or telecommunication control character

learn more… | top users | synonyms

2
votes
4answers
472 views

Invisible Delimiter for Strings in HTML

I need a way to identify certain strings in HTML markup. I know what the strings are, but it is possible that they could be substrings of other strings in the document. To find them, I output a ...
1
vote
2answers
86 views

How do i get rid of this unicode character?

Any idea how to get rid of this irritating character U+0092 from a bunch of text files. I've tried all the below but it doesn't work. It's call U+0092 <control> from the character map sed -i ...
1
vote
3answers
492 views

Removing non Printable values aftert Encoding.ASCII.GetString()

Suppose I have a Byte array and I use Encoding.ASCII.GetString() to convert the bytes into a string. Now the first few bytes will contain actual values, but the remaining ones will all have value of ...
1
vote
3answers
424 views

How to match non-printable characters in a python regular expression?

How do you match non-printable characters in a python regular expression? In my case I have a string that has a combination of printable and non-printable characters. Example String: "Det 3 @ NYY 5 ...
0
votes
0answers
155 views

converting nonprintable characters to 3-byte octal with hexdump

goal - convert a binary file to one where printable characters are left as-is, an all non-printable characters are converted to double-backslash escaped 3-digit octal sequences (postgresql binary ...
0
votes
1answer
313 views

Excel VBA Trim function

Apparently, the trim function only trims spaces. I need a function that trims all non-printing characters. My code... Private Sub CleanUpData() LastRow = ...
0
votes
2answers
37 views

Service/App for viewing a Webpage as hex straight off the wire?

Are there any tools/websites/utilities for viewing a website in hex as it comes strait off the wire? I'm getting some strange non-printing characters back from somebody else's C++ code and I want ...