When I upload a text file to an ASCII file in an IBM mainframe dataset then open the dataset (to browse or edit it), I get a message saying:
"Data contains invalid (non-display) characters. Use command FIND P'.' to position cursor to these"
When I do that, a display says:"CHARS X'25' found.
How can I see those find those characters in the text file?
Find invalid (non-display) characters
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
- Posts: 2461
- Joined: Sun Mar 02, 2003 9:22 pm
Find invalid (non-display) characters
Hi Ben,
The person that created the text-file removed the "extra" characters and that fixed the "invalid (non-display) characters" problem.
Thanks for your input!!!!
Gary
The person that created the text-file removed the "extra" characters and that fixed the "invalid (non-display) characters" problem.
Thanks for your input!!!!
Gary
Just so it is on this thread, for future searches:
I had a similar problem which I was able to mostly-solve by using posix regex
search: [€-ÿ]
on find-in-files to show me "non-normal" text characters that would have to be changed before I could import stuff into my corp's software. That tip was shared by one of the experts here.
I had a similar problem which I was able to mostly-solve by using posix regex
search: [€-ÿ]
on find-in-files to show me "non-normal" text characters that would have to be changed before I could import stuff into my corp's software. That tip was shared by one of the experts here.
I have found that the regex search string below works very well for finding any character that isn't a printable 7-bit ASCII character. (For this purpose I include space and tab as printable.)
Since it may not be readily visible, please note that there is a space character in between the "t" and "-" in the string.
Code: Select all
[^\t -~]
Since it may not be readily visible, please note that there is a space character in between the "t" and "-" in the string.
-
- Posts: 3
- Joined: Sat Dec 31, 2011 7:28 am
The person that created the text-file removed the "extra" characters and that fixed the "invalid (non-display) characters" problem.
Thanks for your input!!
________________________________
WOW Gold | Runescape Money
Thanks for your input!!
________________________________
WOW Gold | Runescape Money