Positive Lookahead

Sort by

recency

|

26 Discussions

|

  • + 0 comments

    Java 15

    import java.io.*;
    import java.util.*;
    import java.util.regex.Pattern;
    import java.util.regex.Matcher;
    public class Solution {
        public static void main(String[] args) {
            Scanner scanner = new Scanner(System.in);
            Pattern pattern = Pattern.compile("o(?=oo)");
            Matcher matcher = pattern.matcher(scanner.nextLine());
            int count = 0;
            while(matcher.find())   count++;
            System.out.println("Number of matches : "+count);
        }
    }
    
  • + 0 comments

    ts

    function main() {
        // Enter your code here
        let regexPattern: RegExp = /o(?=oo)/g;
        let testString:string = readLine();
        console.log("Number of matches : " + testString.match(regexPattern).length)
    }
    
  • + 0 comments

    JavaScript

    var Regex_Pattern = /o(?=oo)/g;	//Do not delete `/` and `/g`.
    
  • + 0 comments

    Wit JS

    let Regex_Pattern = /o(?=oo)/g;
    
  • + 0 comments

    Below pattern worked in python3

    (o)(?=oo)