码迷,mamicode.com
首页 > 编程语言 > 详细

Java如何计数替换字符串中第一次出现的子字符串?

时间:2018-09-10 10:59:56      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:public   bar   shell   cin   mpi   结果   UNC   pack   ring   

在Java编程中,如何拆分正则表达式和字符串?

以下示例演示如何使用Matcher类的replaceFirst()方法替换字符中指定的子字符串的首次出现。

package com.yiibai;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class ReplaceFirstOccurrence {
    public static void main(String args[]) {
        Pattern p = Pattern.compile("hello");
        String instring = "hello, hello word.";
        System.out.println("initial String: " + instring);
        Matcher m = p.matcher(instring);
        String tmp = m.replaceFirst("Java");
        System.out.println("String after replacing 1st Match: " + tmp);
    }
}
Java

上述代码示例将产生以下结果 -

initial String: hello, hello word.
String after replacing 1st Match: Java, hello word.

Java如何计数替换字符串中第一次出现的子字符串?

标签:public   bar   shell   cin   mpi   结果   UNC   pack   ring   

原文地址:https://www.cnblogs.com/borter/p/9617156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!