How to match "any character" in regular expression?

JavaRegex

Java Problem Overview


The following should be matched:

AAA123
ABCDEFGH123
XXXX123

can I do: ".*123" ?

Java Solutions


Solution 1 - Java

Yes, you can. That should work.

  • . = any char except newline
  • \. = the actual dot character
  • .? = .{0,1} = match any char except newline zero or one times
  • .* = .{0,} = match any char except newline zero or more times
  • .+ = .{1,} = match any char except newline one or more times

Solution 2 - Java

Yes that will work, though note that . will not match newlines unless you pass the DOTALL flag when compiling the expression:

Pattern pattern = Pattern.compile(".*123", Pattern.DOTALL);
Matcher matcher = pattern.matcher(inputStr);
boolean matchFound = matcher.matches();

Solution 3 - Java

Use the pattern . to match any character once, .* to match any character zero or more times, .+ to match any character one or more times.

Solution 4 - Java

The most common way I have seen to encode this is with a character class whose members form a partition of the set of all possible characters.

Usually people write that as [\s\S] (whitespace or non-whitespace), though [\w\W], [\d\D], etc. would all work.

Solution 5 - Java

>.* and .+ are for any chars except for new lines.

Double Escaping

Just in case, you would wanted to include new lines, the following expressions might also work for those languages that double escaping is required such as Java or C++:

[\\s\\S]*
[\\d\\D]*
[\\w\\W]*

for zero or more times, or

[\\s\\S]+
[\\d\\D]+
[\\w\\W]+

for one or more times.

Single Escaping:

Double escaping is not required for some languages such as, C#, PHP, Ruby, PERL, Python, JavaScript:

[\s\S]*
[\d\D]*
[\w\W]*
[\s\S]+
[\d\D]+
[\w\W]+

###Test

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


public class RegularExpression{

    public static void main(String[] args){

        final String regex_1 = "[\\s\\S]*";
        final String regex_2 = "[\\d\\D]*";
        final String regex_3 = "[\\w\\W]*";
        final String string = "AAA123\n\t"
             + "ABCDEFGH123\n\t"
             + "XXXX123\n\t";

        final Pattern pattern_1 = Pattern.compile(regex_1);
        final Pattern pattern_2 = Pattern.compile(regex_2);
        final Pattern pattern_3 = Pattern.compile(regex_3);
        
        final Matcher matcher_1 = pattern_1.matcher(string);
        final Matcher matcher_2 = pattern_2.matcher(string);
        final Matcher matcher_3 = pattern_3.matcher(string);

        if (matcher_1.find()) {
            System.out.println("Full Match for Expression 1: " + matcher_1.group(0));
        }

        if (matcher_2.find()) {
            System.out.println("Full Match for Expression 2: " + matcher_2.group(0));
        }
        if (matcher_3.find()) {
            System.out.println("Full Match for Expression 3: " + matcher_3.group(0));
        }
    }
}

###Output

Full Match for Expression 1: AAA123
    ABCDEFGH123
    XXXX123
    
Full Match for Expression 2: AAA123
    ABCDEFGH123
    XXXX123
    
Full Match for Expression 3: AAA123
    ABCDEFGH123
    XXXX123

If you wish to explore the expression, it's been explained on the top right panel of regex101.com. If you'd like, you can also watch in this link, how it would match against some sample inputs.


RegEx Circuit

jex.im visualizes regular expressions:

enter image description here

Solution 6 - Java

There are lots of sophisticated regex testing and development tools, but if you just want a simple test harness in Java, here's one for you to play with:

	String[] tests = {
		"AAA123",
		"ABCDEFGH123",
		"XXXX123",
		"XYZ123ABC",
		"123123",
		"X123",
		"123",
	};
	for (String test : tests) {
		System.out.println(test + " " +test.matches(".+123"));
	}

Now you can easily add new testcases and try new patterns. Have fun exploring regex.

See also

Solution 7 - Java

No, * will match zero-or-more characters. You should use +, which matches one-or-more instead.

This expression might work better for you: [A-Z]+123

Solution 8 - Java

Specific Solution to the example problem:-

Try [A-Z]*123$ will match 123, AAA123, ASDFRRF123. In case you need at least a character before 123 use [A-Z]+123$.

General Solution to the question (How to match "any character" in the regular expression):

  1. If you are looking for anything including whitespace you can try [\w|\W]{min_char_to_match,}.
  2. If you are trying to match anything except whitespace you can try [\S]{min_char_to_match,}.

Solution 9 - Java

Try the regex .{3,}. This will match all characters except a new line.

Solution 10 - Java

[^] should match any character, including newline. [^CHARS] matches all characters except for those in CHARS. If CHARS is empty, it matches all characters.

JavaScript example:

/a[^]*Z/.test("abcxyz \0\r\n\t012789ABCXYZ") // Returns ‘true’.

Solution 11 - Java

I work this Not always dot is means any char. Exception when single line mode. \p{all} should be

String value = "|°¬<>!\"#$%&/()=?'\\¡¿/*-+_@[]^^{}";
String expression = "[a-zA-Z0-9\\p{all}]{0,50}";
if(value.matches(expression)){
	System.out.println("true");
} else {
	System.out.println("false");
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSaobiView Question on Stackoverflow
Solution 1 - JavaDelan AzabaniView Answer on Stackoverflow
Solution 2 - JavaBlueRaja - Danny PflughoeftView Answer on Stackoverflow
Solution 3 - JavathrView Answer on Stackoverflow
Solution 4 - JavaJames DavisView Answer on Stackoverflow
Solution 5 - JavaEmmaView Answer on Stackoverflow
Solution 6 - JavapolygenelubricantsView Answer on Stackoverflow
Solution 7 - JavaHuusomView Answer on Stackoverflow
Solution 8 - JavaAkash Kumar SethView Answer on Stackoverflow
Solution 9 - JavaRavi ShekharView Answer on Stackoverflow
Solution 10 - JavaAnonymousView Answer on Stackoverflow
Solution 11 - JavaAbrahan GonzalezView Answer on Stackoverflow