ISPF 编辑器:将字符更改为大写?

发布于 2025-01-07 10:25:39 字数 159 浏览 0 评论 0原文

我对在 az\OS 环境中工作相当陌生,我尝试过谷歌搜索,但没有找到结果。

我正在 ISPF 编辑窗口中创建一个数据集成员。但是,每次我退出文件、保存它、尝试将其作为 JCL 作业提交时,它都会将所有字符转换为大写。

我怎样才能阻止这种情况发生?

I am fairly new to working in a z\OS environment, I've tried Googling this but found no result.

I'm creating a data set member in the ISPF edit window. However, every time I exit out of the file, save it, try to submit it as a JCL job, it will convert all the characters to upper case.

How can I stop this happening?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

宫墨修音 2025-01-14 10:25:39

在成员的 ISPF 编辑中,如果您在“Command===>”上键入 PROFILE行并按 Enter,您可能会看到当前选项中包含 CAPS ON。您可以通过执行以下操作来更改此设置...

PROFILE UNLOCK
CAPS OFF
PROFILE LOCK

...在命令===>行,每行后按 Enter 键。

ISPF 文档相当广泛。以上是 ISPF 所谓的主要命令。 ISPF编辑器相当强大,有关于其功能的SHARE演示

ISPF Edit 还具有行命令,通过改写给定行的行号来输入。其中两个是UCLC,它们分别对应于大写和小写。它们的作用正如您所想,前者将所有文本折叠为大写,后者将所有文本折叠为小写。数字和特殊字符不受影响。

While in ISPF Edit on a member, if you type PROFILE on the "Command===>" line and press Enter, you will likely see CAPS ON included in your current options. You can change this by doing the following...

PROFILE UNLOCK
CAPS OFF
PROFILE LOCK

...on the Command===> line, pressing Enter after each.

The ISPF documentation is quite extensive. The above are what ISPF calls primary commands. The ISPF editor is quite powerful, there are SHARE presentations on its features.

ISPF Edit also has line commands, entered by overtyping the line number for a given line. Two such are UC and LC, which correspond to Upper Case and Lower Case respectively. They do just what you'd think, the former folds all text to upper case and the latter folds all text to lower case. Numbers and special characters are unaffected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文