I want to read a document by paragraphs and if there comes any text in between " " like quotes, then i have to apply emphasis style to quotes. Is there any way to do this...
Any help would be appreciated...........Thanks
for (Object jaxbNode : jaxbNodes){
String paragraphString = jaxbNode.toString();
styling( paragraphString , true);
for(int i=0;i<s1.length();i++)
{
if(s1.charAt(i)=='“')
{
checkStart=true;
}
if(s1.charAt(i)=='”')
{
checkStart=false;
}
if(checkStart)
{
P paragraph = factory.createP();
Text text = factory.createText(); ...