Changeset 3411
- Timestamp:
- 02/18/08 19:19:48 (11 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/dss/src/org/openmrs/module/dss/util/Util.java
r3359 r3411 287 287 public static String extractIntFromString(String input) 288 288 { 289 if(input == null) 290 { 291 return null; 292 } 289 293 String[] tokens = Pattern.compile("\\D").split(input); 290 294 StringBuffer result = new StringBuffer();