Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public class StudentExample2

{
string name;
integer age;
public void setAge(integer a)
{
if(a<0 || a>100)
{
age=99;
}
else
{
age=a;
}
}
public void setName(string n)
{
Pattern pat = Pattern.compile('[/d/]');
Matcher matcher = pat.matcher(n);
Boolean matches = matcher.find();
system.debug('matches '+matches);
if(matches|| n=='')
{
name='Mytutorialrack';
}
else
{
name=n;
}
}

public void display()


{
System.debug('Name '+name);
System.debug('Age '+age);

}
}

You might also like