Reputation: 169
How can I search for the following string in vim:
\$5 * \$5 * \$6 * 10000
Just typing
/\$5 * \$5 * \$6 * 10000
in command mode doesn't do the job.
Thanks
Upvotes: 1
Views: 1320
Reputation: 19524
Put a \
before \
(double \\
), $
, and *
.
/\\\$5 \* \\\$5 \* \\\$6 \* 1000\\\$5 \* \\\$5 \* \\\$6 \* 10000
Upvotes: 1