字符串反转变形(asd zxc qwe -> qwe zxc asd)

1 public String reverse(String str){
2     String s = "";
3     String[] strings = str.split(" ");
4     for (int i = strings.length - 1; i > 0 && i<strings.length ; i--) {
5         s = strings[i] + " ";
6     }
7     return s;
8 }

asd zxc qwe -> qwe zxc asd

原文地址:https://www.cnblogs.com/carry6/p/11520312.html

时间: 2024-11-09 00:40:40

字符串反转变形(asd zxc qwe -> qwe zxc asd)的相关文章

python学习笔记字符串(二)

字符串类型(string) 字符串是以单引号'或双引号"括起来的任意文本,比如'abc',"123"等等. 请注意,''或""本身只是一种表示方式,不是字符串的一部分,因此,字符串'abc'只有a,b,c这3个字符.如果'本身也是一个字符,那就可以用""括起来,比如"I'm OK"包含的字符是I,',m,空格,O,K这6个字符. 1.创建字符串 b =   'asdasd' 2.字符串操作 a.重复输出字符串 pri

C# 基础 字符串 集合 文件操作

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { //字符串截取(Substring) string stroo = "

19、python基础学习-字符串及操作

1 #!/usr/bin/env python 2 #__author: hlc 3 #date: 2019/5/26 4 # 字符串是以单引号'或者双引号"括起来的任意文本,例如:'asd',"123" 5 # '"不是字符串的一部分,如果需要作为字符串的一部分,需要在单引号外面加上双引号,如:"it's a Good !" 6 7 #创建字符串 8 # var1 = "Hello word" 9 # var2 = 'pyt

微信之初学者:字符串

1.单引号和双引号 print('hello world') print("hello world") 2转义引号 print("let's go!") print('let\'s go!') print('let\'s say "hello world"') 3字符串拼接 print('hello,' + 'world')#注意hello后面的逗号, 4长字符串的输入 print('''Where there is a will,here is

java实现图片与base64字符串之间的转换

java实现图片与base64字符串之间的转换 package com.zxc.testjava.ant; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import sun.misc.BASE64Decoder; import sun.misc

scanf和gets读取字符串

最关键的是scanf返回值是整数型,while(scanf()!=EOF) 而gets返回的是指针while(gets()!=NULL) 1. scanf 函数是有返回值的,它的返回值可以分成三种情况  1) 正整数,表示正确输入参数的个数.例如执行 scanf("%d %d", &a, &b);       如果用户输入"3 4",可以正确输入,返回2(正确输入了两个变量):      如果用户输入"3,4",可以正确输入a,无

运算符、整形&amp;字符串pycharm功能讲解

1.运算符: 算术运算:+  -  *  /  **  %  // 赋值运算:=   +=  -=  *=  /=   %=  //= 算术运算符和赋值运算符结果是值 比较运算:==   <   >   <=   >=   !=   <> 成员运算:in    not in(判断某个东西是否在某个东西里面包含) 逻辑运算:and or not 比较运算符.成员运算符.逻辑运算符结果是布尔值 and or执行顺序: 先计算括号内的 从前到后 :结果是True,遇到or,不

C语言输入字符串

首先强调一点,C语言没有字符串的概念!所谓的字符串实际上还是以数组形式保存的. 方法1  -- 通过"%s"输入 优点:简单明了,输入字符只要不大于数组长度都可以. #include <stdio.h> int main() { char s[100]="\0";//数组初始化 scanf("%s",s); for(int i=0;i<100;i++){//打印输入的一串字符 printf("%c",s[i]

Python字符串拼接和格式化输出

1.字符串拼接 example:a = 'hello' , b = 'python' , c = '!' 将a,b ,c 中的字符串连成一句话. 第一种方法:用 + 号a + b +c 第二种方法:格式化字符串 %s'%s %s %s' % (a , b ,c) 第三种方法:''.join()方式,注意括号里是要连接的可以是列表,元祖' '.join([a,b,c]) (注:''里面是连接后面各个字符串的字符) 第四种方法:.format方式'{}{}{}'.format(a,b,c) (注:{