更改文本大小写实用程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改文本大小写实用程序相关的知识,希望对你有一定的参考价值。

Just run in your consol window as ./tocase (or whatever you call the file). Be sure to give it proper permission first (chmod 755 tocase) :]
  1. #!/usr/bin/perl -w
  2. use strict;
  3. use 5.010;
  4.  
  5. my ($type, $string);
  6.  
  7. print "What type of case? (upper/lower): ";
  8. while (<STDIN>) {
  9. if (/^(upper|lower)$/i) {
  10. $type = $_;
  11. last;
  12. } else {
  13. print "Invalid type please type upper or lower: ";
  14. }
  15. }
  16.  
  17. print "Please enter your text: ";
  18. chomp($string = <STDIN>);
  19. given ($type) {
  20. when ("upper") { print "U$string" }
  21. when ("lower") { print "L$string" }
  22. }
  23.  
  24. print " ";

以上是关于更改文本大小写实用程序的主要内容,如果未能解决你的问题,请参考以下文章

分享几个实用的代码片段(第二弹)

调整片段中 TextView 的文本大小

asp.net页面实用代码片段

C#程序员经常用到的10个实用代码片段

C#程序员经常用到的10个实用代码片段 - 操作系统

更改 Widget 应用程序的文本大小