另一个大写问题

发布于 2024-11-27 09:42:13 字数 159 浏览 3 评论 0原文

这就是我正在尝试做的事情。我有页面标题。我试图将每个字符串中第一个单词的最后一个字母大写

示例:

hellO

hellO 你好吗

我可以让它使用一个单词,但如果有多个单词,我不知道该怎么做。任何帮助都会很棒!

非常感谢!

here is what I am trying to do. I have titles to pages. I'm trying to capitalize the last letter of the first word in each string

Examples:

hellO

hellO how are you

I can get it to work with one word but I cant figure out how to do it if there is more than one word. Any help would be great!!

Thanks so much!

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

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

发布评论

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

评论(3

葬花如无物 2024-12-04 09:42:13

尝试一下

<?php

    $title                  = "Hello World";
    list($firstword, $rest) = explode(" ", $title, 2);
    $firstword              = strrev(ucfirst(strrev($firstword)));
    $title                  = $firstword . " " . $rest;

    print $title;

如果您想了解有关任何功能的更多信息,请参阅 explode, strrev, 列表,<一个href="http://php.net/ucfirst" rel="nofollow">ucfirst

try this

<?php

    $title                  = "Hello World";
    list($firstword, $rest) = explode(" ", $title, 2);
    $firstword              = strrev(ucfirst(strrev($firstword)));
    $title                  = $firstword . " " . $rest;

    print $title;

If you want to read more on any function see explode, strrev, list, ucfirst

Saygoodbye 2024-12-04 09:42:13

由于您知道它如何处理 1 个单词,因此您只需获取第一个单词,然后输入您的算法即可。

  1. 尝试用 preg_replace_callback
  2. 替换回调方法中的最后一个字符。

preg_replace_callback: http://php.net/manual/en/function.preg -replace-callback.php

更新 - 工作代码:

$string = "This is a test";
$string = preg_replace_callback(
        '/^(\w+)/',
        create_function(
            '$matches',
            'return yourUCLastAlgorithm($matches[0]);'
        ),
        $string
    );
echo $string;

更新2 - 使用 preg_replace 和 e 修饰符:

$string = "This is a test";
$string = preg_replace(
        '/^(\w+)/e',
        'yourUCLastAlgorithm("$1")',
        $string
    );
echo $string;

Since you know the way how this works with 1 word, you only need to get the first word and then put your algorithm.

  1. Try preg_replace_callback with "/^(\w+)/"
  2. Replace the last char within the callback method.

preg_replace_callback: http://php.net/manual/en/function.preg-replace-callback.php

UPDATE - working code:

$string = "This is a test";
$string = preg_replace_callback(
        '/^(\w+)/',
        create_function(
            '$matches',
            'return yourUCLastAlgorithm($matches[0]);'
        ),
        $string
    );
echo $string;

UPDATE2 - using preg_replace with e modifier:

$string = "This is a test";
$string = preg_replace(
        '/^(\w+)/e',
        'yourUCLastAlgorithm("$1")',
        $string
    );
echo $string;
萌化 2024-12-04 09:42:13

试试这个:

$string = preg_replace('/^([ ]+)?([^ ]*)([a-z])?(.*)?$/i', "$1.$2.strtoupper($3).$4", $string);

Try this:

$string = preg_replace('/^([ ]+)?([^ ]*)([a-z])?(.*)?$/i', "$1.$2.strtoupper($3).$4", $string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文