Hi,
I need to search for strings and retrieve it and display. Using Regular Expression i tried but my need is that :
For example if i need to search for country names when the use enters only first 2 or 3 letters it should return back the names starting with that 3.
Let it be Austria,Australia.
As of now i used ^$ to handle multiple lines in a string. But only when a use enters Austria it retrieves it.
I need like when a user enters Aus or aus it should return back Australia and Austria.
Whether it is possible using REgular Expressions in Javascript?