Ramesh Balasubramanian

Greenhorn
+ Follow
since Dec 29, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Ramesh Balasubramanian

Thanks a lot Valentin Crettaz.
First of all thanks for such a quick reply.
Question:
I) Just (a|b|c)
Does this mean it can have
a
b
c
Can it also have
ab
ac
bc
Can it have in reverse order like
ba
ca
cb
II) For (a|b|c)*
Are these valid?
c
ccb
ccbccbbaac
...
Does that mean that "a" or "b" or "c" can appear any number of times in any order?
Thx for your patience
Thanks for all your response, Especially to
Valentin Crettaz. .
Actually my doubt was for the #PCDATA appearing in between each tag.
My understanding is
* means, the one mentioned in "(" to ")" can
appear 0 to n times.
And "(#PCDATA | name | orderid | shipdate)"
implies that any one of them
can appear. i.e. #PCDATA or name or
orderid or shipdate in an
XML instance.

Can you please explain.
Thx.
Hello,
I am looking for the DTD for this XML. Can you please help me out.
Thx.
<pre>

<letter>
Dear Mr.<name>John Smith</name>.
Your order <orderid>1032</orderid>
will be shipped on <shipdate>2001-07-13</shipdate>.
</letter>
</pre>
I have a JList and JTextArea. When I choose a value in my ListBox it must automatically change my JTextArea value. This is
not happening!!!. I have pasted my code. Can anyone please look into and find out the bug.
23 years ago