Removed = sign from csv data

This commit is contained in:
rajesh
2025-06-04 13:03:04 +05:30
parent 5df897680a
commit 368e115ea2

View File

@@ -1972,7 +1972,7 @@ public class ApplicationDao {
} }
// Wrap it in ="..." to make Excel treat it as a literal string // Wrap it in ="..." to make Excel treat it as a literal string
return "=\"" + stringValue.replace("\"", "\"\"") + "\""; return stringValue;
} catch (Exception e) { } catch (Exception e) {
return ""; return "";