我有这个矩阵:
1 2 3
4 5 6
Run Code Online (Sandbox Code Playgroud)
我转置矩阵:
1 4
2 5
3 6
Run Code Online (Sandbox Code Playgroud)
How can I get the original matrix back, after the transpose?
"untranspose" =
1 2 3
4 5 6
Run Code Online (Sandbox Code Playgroud)
I am making a simple cryptographic algorithm in Java and need that to solve that problem.
我有这个文本:"我喜欢stackoverflow",并希望这个结果与regexp(分开\n):
i
l
i
k
e
s
....
Run Code Online (Sandbox Code Playgroud)
我怎么能用c#做到这一点?
我正在尝试解析一个网站,但html是一团糟.任何有解析网站经验的人都可以帮助我吗?
<tr>
<td><font FACE=Tahoma color='#CC0000' size=2><b>Date</b></font></td>
<td><font FACE=Tahoma color='#CC0000' size=2><b>Place</b></font></td>
<td><font FACE=Tahoma color='#CC0000' size=2><b>Situation</b></font></td>
</tr>
<tr><td rowspan=2>16/09/2011 10:11</td><td>New York</td><td><FONT COLOR="000000">Situation Red</font></td></tr>
<tr><td colspan=2>Optional comment hello new york</td></tr>
<tr><td rowspan=2>16/09/2011 10:08</td><td>Texas</td><td><FONT COLOR="000000">Situation Green</font></td></tr>
<tr><td colspan=2>Optional comment hello texas </td></tr>
<tr><td rowspan=1>06/09/2011 13:14</td><td>California</td><td><FONT COLOR="000000">Yellow Situation</font></td></tr>
</TABLE>
Run Code Online (Sandbox Code Playgroud)
一个奇怪和疯狂的事情是评论不在表的头部也起点(加利福尼亚州)没有评论.所以,起点始终是这样的:
日期:06/09/2011 13:14
地点:加州
情况:黄色情况
评论:null
所有其他地方都有评论,将是这样的:
日期:16/09/2011 10:11
地点:纽约
情况:情况红色
评论:可选评论你好纽约.
我已经尝试了一些方法,但我对node.js没有太多经验,而且对HTML解析没有太多经验.我需要开始解析疯狂的东西.