Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
13a2683b
Commit
13a2683b
authored
Jan 22, 2021
by
吴春
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/Kui2/education
parents
636ecfbd
4b02f596
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
QuestionController.cs
Edu.WebApi/Controllers/Course/QuestionController.cs
+13
-1
No files found.
Edu.WebApi/Controllers/Course/QuestionController.cs
View file @
13a2683b
...
...
@@ -12,6 +12,7 @@ using Microsoft.AspNetCore.Mvc;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text.RegularExpressions
;
namespace
Edu.WebApi.Controllers.Course
{
...
...
@@ -88,11 +89,22 @@ namespace Edu.WebApi.Controllers.Course
{
item
.
UpdateByName
=
UserReidsCache
.
GetUserLoginInfo
(
item
.
UpdateBy
)?.
AccountName
??
""
;
}
// 定义正则表达式用来匹配 img 标签
string
str
=
@"<img\b[^<>]*?\bsrc[\s\t\r\n]*=[\s\t\r\n]*[""']?[\s\t\r\n]*(?<imgUrl>[^\s\t\r\n""'<>]*)[^<>]*?/?[\s\t\r\n]*>"
;
string
newTitle
=
""
;
try
{
newTitle
=
Regex
.
Replace
(
item
.
Title
,
str
,
"[图片]"
);
}
catch
(
Exception
ex
)
{
newTitle
=
item
.
Title
;
}
resultList
.
Add
(
new
{
item
.
QuestionId
,
item
.
CourseId
,
item
.
Title
,
Title
=
new
Title
,
item
.
QuestionTypeId
,
item
.
QuestionTypeKey
,
item
.
QuestionTypeName
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment