Conjunctions of disjunction in java -
is there way in java conjunctions of disjunctions of strings, i.e, example
if have 2 string str1="a" , str2="c or d", "or" here disjunction. need output of conjunction of these 2 strings, i.e, , (c or d) = (a , c) or (a , d)
is possible in java ?
Comments
Post a Comment