在小写字母后面插入一个点,然后插入一个空格,紧接着是一个大写字母
我正在尝试完成以下任务:
搜索小写字母,然后搜索大写字母。将其替换为小写字母,后跟 '. ',后跟大写字母。
示例:
helloAre you there
应该变成:
hello. Are you there
I'm trying to accomplish the following:
search for a lowercase letter followed by uppercase letter. replace this with the lowercase letter, followed by '. ', followed by the uppercase letter.
example:
helloAre you there
should become:
hello. Are you there
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在小写字母和大写字母之间插入点空格
.
。要防止
iP
,请使用以下命令:Inserts a dot-space
.
between the lower and upper-case letters.To prevent
iP
, use this:如果
$text
是您可以使用的原始文本If
$text
is the original text you could use