You can use this regex:
^6.{4}D
Here, ^
is the start of the string, .{4}
means any four characters.
solved RegEX : Find match based on condition [closed]
You can use this regex:
^6.{4}D
Here, ^
is the start of the string, .{4}
means any four characters.
solved RegEX : Find match based on condition [closed]