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


Posted in PHP onNovember 10, 2014

本文实例讲述了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、标点符号(只考虑 , ' " . ;)不用变化。

二、参考算法如下:

<?php

    function convertLastChar($str) {

        $markArr = array(", ", "' ", "\" ", ". ", "; ");

        $ret = "";

        for ($i = 0, $j = strlen($str); $i < $j; $i++) {

            if ($i < $j - 2) {

                $afterStr = $str{$i + 1} . $str{$i + 2};

            } else if ($i < $j - 1) {

                $afterStr = $str{$i + 1} . " ";

            }

            if (in_array($afterStr, $markArr) 

                || $i == $j - 1 

                || $str{$i + 1} == " ") {

                $ret .= strtoupper($str{$i}) === $str{$i} 

                    ? strtolower($str{$i}) 

                    : strtoupper($str{$i});

            } else {

                $ret .= $str{$i};

            }

        }

        return $ret;

    }

?>

测试代码如下:

<?php
    //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:<br/>" . $str1 . "<br/>result:<br/>" . convertLastChar($str1) . "<br/><br/>";

    echo "source:<br/>" . $str2 . "<br/>result:<br/>" . convertLastChar($str2) . "<br/><br/>";

    echo "source:<br/>" . $str3 . "<br/>result:<br/>" . convertLastChar($str3) . "<br/><br/>";

    echo "source:<br/>" . $str4 . "<br/>result:<br/>" . convertLastChar($str4) . "<br/><br/>";

    echo "source:<br/>" . $str5 . "<br/>result:<br/>" . convertLastChar($str5) . "<br/><br/>";

    echo "source:<br/>" . $str6 . "<br/>result:<br/>" . convertLastChar($str6) . "<br/><br/>";

?>

运行结果如下:

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 相关文章推荐
如何用C语言编写PHP扩展的详解
Jun 13 PHP
PHP同时连接多个mysql数据库示例代码
Mar 17 PHP
php之curl实现http与https请求的方法
Oct 21 PHP
php实现的验证码文件类实例
Jun 18 PHP
用HTML/JS/PHP方式实现页面延时跳转的简单实例
Jul 18 PHP
PHP经典算法集锦【经典收藏】
Sep 14 PHP
php mysql_real_escape_string addslashes及mysql绑定参数防SQL注入攻击
Dec 23 PHP
PHP静态成员变量和非静态成员变量详解
Feb 14 PHP
thinkPHP5分页功能实现方法分析
Oct 25 PHP
php实现的AES加密类定义与用法示例
Jan 29 PHP
PHP长连接实现与使用方法详解
Feb 11 PHP
PHP随机数函数rand()与mt_rand()的讲解
Mar 25 PHP
PHP 快速排序算法详解
Nov 10 #PHP
PHP基于CURL进行POST数据上传实例
Nov 10 #PHP
ci检测是ajax还是页面post提交数据的方法
Nov 10 #PHP
php采用ajax数据提交post与post常见方法总结
Nov 10 #PHP
php学习笔记之面向对象
Nov 08 #PHP
php学习笔记之基础知识
Nov 08 #PHP
推荐一款MAC OS X 下php集成开发环境mamp
Nov 08 #PHP
You might like
什么是PEAR?什么是PECL?PHP中两个容易混淆的概念解释
2015/07/01 PHP
php实现在多维数组中查找特定value的方法
2015/07/29 PHP
老生常谈PHP位运算的用途
2017/03/12 PHP
Eclipse PHPEclipse 配置的具体步骤
2017/08/08 PHP
PHP实现压缩图片尺寸并转为jpg格式的方法示例
2018/05/10 PHP
浅析PHP反序列化中过滤函数使用不当导致的对象注入问题
2020/02/15 PHP
Web开发者必备的12款超赞jQuery插件
2010/12/03 Javascript
jQuery 网易相册鼠标移动显示隐藏效果实现代码
2013/03/31 Javascript
使用js显示当前时间示例
2014/03/02 Javascript
JS生成随机字符串的多种方法
2014/06/10 Javascript
JSONP跨域GET请求解决Ajax跨域访问问题
2014/12/31 Javascript
快速学习jQuery插件 Cookie插件使用方法
2015/12/01 Javascript
使用UrlConnection实现后台模拟http请求的简单实例
2017/01/04 Javascript
对于js垃圾回收机制的理解
2017/09/14 Javascript
浅谈vue项目重构技术要点和总结
2018/01/23 Javascript
微信小程序模版渲染详解
2018/01/26 Javascript
基于vue cli 通过命令行传参实现多环境配置
2018/07/12 Javascript
JS事件循环机制event loop宏任务微任务原理解析
2020/08/04 Javascript
详解 javascript对象创建模式
2020/10/30 Javascript
研究Python的ORM框架中的SQLAlchemy库的映射关系
2015/04/25 Python
详解Python nose单元测试框架的安装与使用
2017/12/20 Python
浅谈Django的缓存机制
2018/08/23 Python
详解python数据结构和算法
2019/04/18 Python
Python读入mnist二进制图像文件并显示实例
2020/04/24 Python
Django ForeignKey与数据库的FOREIGN KEY约束详解
2020/05/20 Python
python名片管理系统开发
2020/06/18 Python
详解pytorch中squeeze()和unsqueeze()函数介绍
2020/09/03 Python
scrapy redis配置文件setting参数详解
2020/11/18 Python
python+playwright微软自动化工具的使用
2021/02/02 Python
美国从事品牌鞋类零售的连锁店:Famous Footwear
2016/08/25 全球购物
英国最大的在线时尚眼镜店:Eyewearbrands
2019/03/12 全球购物
工程师岗位职责
2013/11/08 职场文书
《乌鸦和狐狸》教学反思
2014/02/08 职场文书
工商管理专业毕业生求职信
2014/05/26 职场文书
幼儿园小班个人总结
2015/02/12 职场文书
详解用Python把PDF转为Word方法总结
2021/04/27 Python