Skip to content
Advertisement

Regex test method returning more than a specific string [closed]

I’m trying to search a specific string like 9.7 in an array using regex test method, but, it’s returning values that contains 1984, 1987 in the same row and also 9.7 rows.

JavaScript

Expected output:

JavaScript

Could anyone help me? Thanks.

Advertisement

Answer

The . is a special char meaning any character. So when your search string contains it you need to escape it or it will be treated like the wildcard.

use

JavaScript

but keep in mind that this might happen with other special characters

JavaScript
Advertisement