Using the standard search function (/) in VIM, is there a way to search using a wildcard (match 0 or more characters)?
Example:
I have an array and I want to find anywhere the array's indices are assigned.
array[0] = 1;
array[i] = 1;
array[index]=1;
etc.
I'm looking for something along the lines of
/array*=
if it's possible.