Fri, 17 May 2024


Regular Expression Search and Replace Java Example

By: Peter, NetArt Media
Wed, 4 November 2020

import java.util.regex.*;

public class BasicReplace
{
public static void main(String[] args)
{
CharSequence inputStr = "a b c a b c";
String patternStr = "a";
String replacementStr = "x";

// Compile regular expression
Pattern pattern = Pattern.compile(patternStr);

// Replace all occurrences of pattern in input
Matcher matcher = pattern.matcher(inputStr);
String output = matcher.replaceAll(replacementStr);
// x b c x b c
}
}


Category: Web Development
Share this post:



See All Scripts






Subscribe for our newsletter

Receive the latest blog posts direct in your mailbox