找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2050|回复: 0
打印 上一主题 下一主题

PHP字符串word末字符实现大小写互换的方法

[复制链接]

2500

主题

2513

帖子

7520

积分

论坛元老

Rank: 8Rank: 8

积分
7520
跳转到指定楼层
楼主
发表于 2018-2-14 05:53:08 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

            本文实例讲述了PHP字符串word末字符实现大小写互换的方法。分享给大家供大家参考。具体实现方法如下:
一、要求:
给出一个字符串如 “A journey of, a thousand 'miles' must can't \"begin\" with a single step.” ,通过 PHP 程序处理变成 “a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP.”
这里需要注意:
1、每个单词最后的字符如果是大写就变成小写,如果是小写就变成大写。
2、需要考虑类似  can't 这种形式的转换。
3、标点符号(只考虑 , ' " . ;)不用变化。
二、参考算法如下:
[U]复制代码[/U] 代码如下:
测试代码如下:
[U]复制代码[/U] 代码如下:
    //test
    $str1 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step.";
    $str2 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. ";
    $str3 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. a ";
    $str4 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. a B";
    $str5 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. a b'";
    $str6 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. a B\"";
    echo "source:
" . $str1 . "
result:
" . convertLastChar($str1) . "
";
    echo "source:
" . $str2 . "
result:
" . convertLastChar($str2) . "
";
    echo "source:
" . $str3 . "
result:
" . convertLastChar($str3) . "
";
    echo "source:
" . $str4 . "
result:
" . convertLastChar($str4) . "
";
    echo "source:
" . $str5 . "
result:
" . convertLastChar($str5) . "
";
    echo "source:
" . $str6 . "
result:
" . convertLastChar($str6) . "
";
?>
运行结果如下:
[U]复制代码[/U] 代码如下:source:
A journey of, a thousand 'miles' must can't "begin" with a single step.
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP.
source:
A journey of, a thousand 'miles' must can't "begin" with a single step.
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP.
source:
A journey of, a thousand 'miles' must can't "begin" with a single step. a
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP. A
source:
A journey of, a thousand 'miles' must can't "begin" with a single step. a B
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP. A b
source:
A journey of, a thousand 'miles' must can't "begin" with a single step. a b'
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP. A B'
source:
A journey of, a thousand 'miles' must can't "begin" with a single step. a B"
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP. A b"
希望本文所述对大家的PHP程序设计有所帮助。
            
            
您可能感兴趣的文章:
  • PHP中将网页导出为Word文档的代码
  • php在程序中将网页生成word文档并提供下载的代码
  • PHP去掉从word直接粘贴过来的没有用格式的函数
  • php 备份数据库代码(生成word,excel,json,xml,sql)
  • 使用PHP导出Word文档的原理和实例
  • php导出word格式数据的代码实例
  • php导出word文档与excel电子表格的简单示例代码
  • PHP把网页保存为word文件的三种方法
  • php实现将上传word文件转为html的方法
  • php通过baihui网API实现读取word文档并展示
  • php导出生成word的方法
  • php实现word转html的方法
            
  • 分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    用户反馈
    客户端