[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: difficulty in soot.jimple.StringConstant



Hi,
 
sorry, my mistake. Don't attention.
these two are not different.
My remain works are escape character processing in StringConstance.
 
DongHyun Kim
 
> Hi,
>
> I'm doing load java class in using soot.
>
> there is a String constance that is "I'm" in java source
> (String str = "I'm";)
>
> It is convert to soot.jimple.StringConstant "I\'m"
> (r4 = "I\'m";)
>
> I also try to "I\'m" in java source
> (String str = "I\'m";)
>
> It is convert to soot.jimple.StringConstant "I\'m"
> (r4 = "I\'m";)
>
> These two are differnent in source, but here is the same in > jimple.
>
> How is it distinguish?
> DongHyun Kim