
- Java Tutorial
- Java - Home
- Java - Overview
- Java - Environment Setup
- Java - Basic Syntax
- Java - Object & Classes
- Java - Constructors
- Java - Basic Datatypes
- Java - Variable Types
- Java - Modifier Types
- Java - Basic Operators
- Java - Loop Control
- Java - Decision Making
- Java - Numbers
- Java - Characters
- Java - Strings
- Java - Arrays
- Java - Date & Time
- Java - Regular Expressions
- Java - Methods
- Java - Files and I/O
- Java - Exceptions
- Java - Inner classes
- Java Object Oriented
- Java - Inheritance
- Java - Overriding
- Java - Polymorphism
- Java - Abstraction
- Java - Encapsulation
- Java - Interfaces
- Java - Packages
- Java Advanced
- Java - Data Structures
- Java - Collections
- Java - Generics
- Java - Serialization
- Java - Networking
- Java - Sending Email
- Java - Multithreading
- Java - Applet Basics
- Java - Documentation
- Java Useful Resources
- Java - Questions and Answers
- Java - Quick Guide
- Java - Useful Resources
- Java - Discussion
- Java - Examples
How to match non-word boundaries using Java RegEx?
You can match the non-word boundaries using the meta character “\B”.
Example 1
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main(String args[]) { //Reading String from user System.out.println("Enter a String"); Scanner sc = new Scanner(System.in); String input = sc.nextLine(); String regex = "\B"; //Compiling the regular expression Pattern pattern = Pattern.compile(regex); //Retrieving the matcher object Matcher matcher = pattern.matcher(input); int count = 0; while(matcher.find()) { count++; } System.out.println("Number of non-word boundaries: "+count); } }
Output
Enter a String this is a sample text Number of non-word boundaries: 12
Example 2
import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main( String args[] ) { String regex = "\Bin"; Scanner sc = new Scanner(System.in); System.out.println("Enter a string: "); String input = sc.nextLine(); Pattern p = Pattern.compile(regex); Matcher m = p.matcher(input); int count = 0; while(m.find()) { count++; } System.out.println("no of non-word boundaries: "+count); } }
Output
Enter a string: this is a sample text in win tin pin sin no of non-word boundaries: 4
- Related Articles
- How to match word boundaries using Java RegEx?
- How to match a non-word character using Java RegEx?
- How to match word characters using Java RegEx?
- How to match non-digits using Java Regular Expression (RegEx)
- How to match a non-white space equivalent using Java RegEx?
- How to match a line not containing a word in Java Regex
- How to match any character using Java RegEx
- How to match digits using Java Regular Expression (RegEx)
- How to match a range of characters using Java regex
- How to match a white space equivalent using Java RegEx?
- How to match end of the input using Java RegEx?
- Match specific word in regex in JavaScript?
- How to match a fixed set of characters using Java RegEx
- How to match the beginning of the input using Java RegEx?
- How match a string irrespective of case using Java regex.

Advertisements