In database mapRule column contains
- IFA 211974009 | Deep partial thickness burn of toe(s) (disorder) |
- IFA 28571002 | Second degree burn of toe (disorder) |
- IFA 211968009 | Superficial partial thickness burn of foot (disorder) |
required output are in between | symbol pie or vertical bar
- Deep partial thickness burn of toe(s) (disorder)
- Second degree burn of toe (disorder)
- Superficial partial thickness burn of foot (disorder)
how to get this ? i am fetching data from mysql my code is
CODE
<%
pstm = Con.prepareStatement(selectsql);
pstm.setString(1, snomedid);
resultSet = pstm.executeQuery();
while (resultSet.next()) { %>
<p><%=resultSet.getString("mapRule")%></p>
<% } %>
how to validate in this case .?