Can anyone tell me how to compare two strings ignoring a noise character…
for example if strings are A####### mi######## t and #### Am#### it## then the function should tell equal ignoring the #…
Can anyone tell me how to compare two strings ignoring a noise character…
for example if strings are A####### mi######## t and #### Am#### it## then the function should tell equal ignoring the #…
Take pointer to String 1 and a pointer to string 2 and iterate.
Whenever you get a non-noise character compare else ignore and move forward.
Hope it helps