本文介绍了需要一个简单的逻辑来进行简单的文本操作过程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 您好我想编写一个程序,其中包含一个由空格分隔的字符串 ,并在每个空格中放入逗号,但是,最后的 名称应该有"和"在它之前。 让我在一个例子的帮助下解释: 原始字符串是:Toby Grant Michelle Tom程序应该 返回托比,格兰特,米歇尔和汤姆 干杯! 雷克斯Hi I want to write a procedure which takes in a string of namesseperated by a whitespace and puts commas at each whitespace the lastname however, should have "and" before it.Let me explain that with the help of an example:The original string is: "Toby Grant Michelle Tom" the procedure shouldreturn "Toby, Grant, Michelle and Tom"Cheers!Rex推荐答案 2006年11月20日17:12:57 -0800,Rex < ra ******* @ gmail.comwrote: 实际上,正确的标点符号是: " Toby,Grant,Michelle,和汤姆 ref: http://dictionary.reference.com/writ...nctuation.html 使用这些函数的组合:Replace,InStr,LeftOn 20 Nov 2006 17:12:57 -0800, "Rex" <ra*******@gmail.comwrote:Actually, the proper punctuation is:"Toby, Grant, Michelle, and Tom"ref: http://dictionary.reference.com/writ...nctuation.htmlUse a combination of these functions: Replace, InStr, Left,Mid, 正确,Right 这篇关于需要一个简单的逻辑来进行简单的文本操作过程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-31 03:32