Click here to Skip to main content
15,890,557 members
Articles / Programming Languages / C#
Alternative
Tip/Trick

Use wildcard characters * and ? to compare strings

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
6 May 2010CPOL 6.6K  
Using the Substring operation repeatedly as you do is apt to be very slow. Better would be to pass the starting indices and lengths of the two strings as parameters. That would require a manual loop to replace the String.Trim function, but it would avoid the need to create lots of new string...
Using the Substring operation repeatedly as you do is apt to be very slow. Better would be to pass the starting indices and lengths of the two strings as parameters. That would require a manual loop to replace the String.Trim function, but it would avoid the need to create lots of new string objects on the heap. For short strings it wouldn't matter too much, but I would expect your routine would get really slow if the strings are a few thousand characters long.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Unknown
Embedded systems programmer since 1994.

Comments and Discussions

 
-- There are no messages in this forum --