source: trunk/src/org/expeditee/items/StringUtils.java@ 309

Last change on this file since 309 was 154, checked in by ra33, 16 years ago

Fixing bugs for Rob

File size: 167 bytes
Line 
1package org.expeditee.items;
2
3public class StringUtils {
4
5 public static String convertNewLineChars(String string) {
6 return string.replaceAll("\r\n|\r", "\n");
7 }
8}
Note: See TracBrowser for help on using the repository browser.