Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
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
YZG
yzg-util
Commits
1784577d
Commit
1784577d
authored
Jul 29, 2024
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
身份证识别
parent
a9adf3dd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
TestString.java
yzg-util-base/src/test/java/helper/TestString.java
+18
-0
No files found.
yzg-util-base/src/test/java/helper/TestString.java
0 → 100644
View file @
1784577d
package
helper
;
import
com.yanzuoguang.util.helper.StringHelper
;
import
org.junit.Test
;
public
class
TestString
{
@Test
public
void
test
()
{
String
content
=
"【长江索道】您的北站排号号码2764已过期,请在订单页面点击“重取”,或凭门票、身份证到自助机(电商)、游客服务中心重新取号。当前等候区间2782-3004。"
;
int
page
=
StringHelper
.
getPage
(
content
.
length
(),
67
);
String
content1
=
"【长江索道】您的北站排号号码2764已过期,请在订单页面点击“重取”,或凭门票、身份证到自助机(电商)、游客服务中心重新取号。"
;
int
page1
=
StringHelper
.
getPage
(
content1
.
length
(),
67
);
System
.
out
.
printf
(
"长度:%d 条数:%d%n"
,
content
.
length
(),
page
);
System
.
out
.
printf
(
"长度:%d 条数:%d%n"
,
content1
.
length
(),
page1
);
}
}
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