Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d178ce8

Browse files
committed
String formatting (2nd iteration) handle %n from Java
1 parent 42c3b47 commit d178ce8

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

java2python/mod/transform.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ def formatSyntaxTransf(match):
101101
inside a format specifier string.
102102
"""
103103
groups = match.groupdict()
104+
if groups['convers'] == 'n':
105+
# Means platform-specific line separator
106+
return '\\n' # Py converts \n to os.linesep
107+
104108
result = '{'
105109
# TODO: add flags, width and precision
106110
if(groups['idx']):
@@ -124,7 +128,7 @@ def formatString(node, config):
124128
format = call_args[0].firstChildOfType(tokens.STRING_LITERAL)
125129
if format:
126130
format.token.text = \
127-
re.sub(r'%(?P<idx>\d+\$)?(?P<convers>[scdoxefg])',
131+
re.sub(r'%(?P<idx>\d+\$)?(?P<convers>[scdoxefgn])',
128132
formatSyntaxTransf,
129133
format.token.text,
130134
flags=re.IGNORECASE)

test/Format0.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ public class Format0 {
22
public static void main(String[] args) {
33
int i = 22;
44
String s = "text";
5-
String r = String.format("> (%1$d) %2$s", i, s);
5+
String r = String.format("> (%1$d) %n %2$s", i, s);
66

77
System.out.println(r);
88
}

0 commit comments

Comments
 (0)