zoukankan      html  css  js  c++  java
  • C#和Java中的Substring()

    吐槽…使用清理软件整理电脑要注意,不要清理的“太狠”,不然你会受伤的!

    C#中的Substring()

    示例

    实现代码

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;

    namespace WindowsDemo
    {
        class Program
        {
            static void Main(string[] args)
            {
                //调用外部函数
                subStringDemo();
            }
            //取子字符串函数
            static void subStringDemo()
            {
                string str = "123456";
                string subStr1 = str.Substring(5);
                string subStr2 = str.Substring(0, 5);
                Console.WriteLine("单个参数: " + subStr1);
                Console.WriteLine("两个参数: " + subStr2);
                Console.ReadKey();
            }
        }
    }

    image

    通过示例,我们可以得出Substring()的传入参数不同时,执行的功能也是有所差异的。

    • 传入一个参数时候,如Substring(A)表示从原字符串的指定索引号A开始截取直到原字符串的最后一个;
    • 传入两个参数时候,如Substring(A,B)表示从原字符串索引号为A的字符开始取,所取得的字符串长度为B;

    注意

    当传入的参数不合法时,会抛出ArgumentsOutOfRangeException错误。

    image


    Java中的Substring()

    示例

    实现代码

    String str=”123456”;

    subStr=str.Substring(2,5);

    System.Output.println(subStr);

    //输出结果

    345

    由上述示例我们可以得出:

    str.Substring(A,B),表示取子字符串取str字符串从序号A到B的字符,且满足包含A不包含B,即[A,B)。

    注意

    如果参数不合法,那么将会抛出 IndexOutOfBoundsException 错误。

  • 相关阅读:
    hibernate 报query result offset is not supported
    MAC下 mySQL及workbench安装
    FC105 FC106 Scale功能块使用说明
    报错!!!Servlet.service() for servlet [action] in context with path [/myssh] threw exception [java.lang.NullPointerException] with root cause java.lang.NullPointerException
    PLC300寻址指令
    vscode 配置
    Integrate Intellij with Cygwin
    Configure VSCode
    Linux下安装gradle
    Linux下安装nodejs-源码安装
  • 原文地址:https://www.cnblogs.com/Jener/p/6216136.html
Copyright © 2011-2022 走看看