String Matching.

Posted by Harikrishna on Stack Overflow See other posts from Stack Overflow or by Harikrishna
Published on 2010-04-08T10:31:58Z Indexed on 2010/04/08 10:53 UTC
Read the original article Hit count: 336

Filed under:
|
|
|

I have a string

String mainString="///BUY/SELL///ORDERTIME///RT///QTY///BROKERAGE///NETRATE///AMOUNTRS///RATE///SCNM///";

Now I have another strings

String str1= "RT";

which should be matched only with RT which is substring of string mainString but not with ORDERTIME which is also substring of string mainString.

 String str2= "RATE" ;

And RATE(str2) should be matched with RATE which is substring of string mainString but not with NETRATE which is also substring of string mainString.

How can we do that ?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET