小编Ste*_*han的帖子

19
推荐指数
2
解决办法
8758
查看次数

我如何转置和"转换"矩阵?

我有这个矩阵:

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.

algorithm matrix

4
推荐指数
1
解决办法
977
查看次数

Regexp,强制文本垂直

我有这个文本:"我喜欢stackoverflow",并希望这个结果与regexp(分开\n):

i
l
i
k
e
s
....
Run Code Online (Sandbox Code Playgroud)

我怎么能用c#做到这一点?

c# regex

2
推荐指数
1
解决办法
141
查看次数

用node.js解析奇怪的html

我正在尝试解析一个网站,但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解析没有太多经验.我需要开始解析疯狂的东西.

html-parsing node.js

1
推荐指数
1
解决办法
1535
查看次数

标签 统计

algorithm ×1

c# ×1

database ×1

html-parsing ×1

matrix ×1

node.js ×1

nosql ×1

oop ×1

regex ×1