代码搜索:Line
找到约 10,000 项符合「Line」的源代码
代码结果 10,000
www.eeworm.com/read/402300/11538456
svg icon_line_down_3rd_selected_38x38.svg
www.eeworm.com/read/402300/11538457
svg icon_line_up_1st_selected_38x38.svg
www.eeworm.com/read/402300/11538460
svg icon_line_down_1st_selected_38x38.svg
www.eeworm.com/read/402300/11538461
svg icon_line_down_2nd_selected_38x38.svg
www.eeworm.com/read/127767/14336431
txt e446. removing line termination characters from a string.txt
A line termination character sequence is a character or character pair from the set: \n, \r, \r\n, \u0085, \u2028, and \u2029.
Note: The character pair \n\r is considered a two-line terminator chara
www.eeworm.com/read/127767/14337076
txt e444. matching across line boundaries in a regular expression.txt
By default, the any-character matcher (.) does not match line termination characters such as \n and \r. To allow dot (.) to match line termination characters, the pattern should be compiled with the d
www.eeworm.com/read/127767/14337424
txt e951. setting grid line properties in a jtable component.txt
JTable table = new JTable();
// Add data here
// Show both horizontal and vertical grid lines (the default)
table.setShowGrid(true);
// Don't show any grid lines
www.eeworm.com/read/127767/14337676
txt e330. determining potential line breaks in a unicode string.txt
BreakIterator iterator = BreakIterator.getLineInstance(Locale.CANADA);
iterator.setText("line1\nline2");
for (int index=iterator.first(); index != BreakIterator.DONE; index=iterator.next())
www.eeworm.com/read/189472/8467815
txt bugs.txt
working on context support: see strange bug in term.cc
unknown bug while collapsing a long line, or using down arrow
get del_line to work with multiple cursors
test expansions with multiple cursors
www.eeworm.com/read/428326/8875997
py var.py
#Filename: var.py
i = 5
print i
i = i+1
print i
s = '''This is a multi-line string.
This is the second line.'''
print s