求一个判断为1-99之间奇数的正则
用正则表达式判断输入的数字是否为1--99之间的奇数,包含1跟99,谢谢。
回复讨论(解决方案)
/\d?[13579]/
/\d?[13579]/
需要1-99之间
for($i=1; $i<100; $i++) { printf("%2d %s\n", $i, preg_match('/^\d?[13579]$/', $i) ? 'yes' : 'no');}
2 no
3 yes
4 no
5 yes
6 no
7 yes
8 no
9 yes
10 no
11 yes
12 no
13 yes
14 no
15 yes
16 no
17 yes
18 no
19 yes
20 no
21 yes
22 no
23 yes
24 no
25 yes
26 no
27 yes
28 no
29 yes
30 no
31 yes
32 no
33 yes
34 no
35 yes
36 no
37 yes
38 no
39 yes
40 no
41 yes
42 no
43 yes
44 no
45 yes
46 no
47 yes
48 no
49 yes
50 no
51 yes
52 no
53 yes
54 no
55 yes
56 no
57 yes
58 no
59 yes
60 no
61 yes
62 no
63 yes
64 no
65 yes
66 no
67 yes
68 no
69 yes
70 no
71 yes
72 no
73 yes
74 no
75 yes
76 no
77 yes
78 no
79 yes
80 no
81 yes
82 no
83 yes
84 no
85 yes
86 no
87 yes
88 no
89 yes
90 no
91 yes
92 no
93 yes
94 no
95 yes
96 no
97 yes
98 no
99 yes
老大辛苦了,我的意思是还要同时判断输入的数字大于0,小于100(1-99之间),虽然我知道可以用if99来判断,但我想用一个正则来直接判断。
/^\d?[13579]$/
就已经满足了
var_dump(preg_match('/^\d?[13579]$/', 0));//int(0)
var_dump(preg_match('/^\d?[13579]$/', -1));//int(0)
var_dump(preg_match('/^\d?[13579]$/', 100));//int(0)
多谢老大

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP email detection: Determine whether the email has been sent successfully. When developing web applications, you often need to send emails to communicate with users. Whether it is registration confirmation, password reset, or sending notifications, the email function is an indispensable part. However, sometimes we cannot ensure whether the email is actually sent successfully, so we need to perform email detection and determine whether the email has been sent successfully. This article will introduce how to use PHP to implement this function. 1. Use SMTP server to send emails. First, we need to use SM

Use Java's File.isDirectory() function to determine whether a file exists and is of directory type. In Java programming, you often encounter situations where you need to determine whether a file exists and is of directory type. Java provides the File class to operate files and directories. The isDirectory() function can help us determine whether a file is a directory type. The File.isDirectory() function is a method in the File class. Its function is to determine the current File

Use Java's Character.isDigit() function to determine whether a character is a numeric character. Characters are represented in the form of ASCII codes internally in the computer. Each character has a corresponding ASCII code. Among them, the ASCII code values corresponding to the numeric characters 0 to 9 are 48 to 57 respectively. To determine whether a character is a number, you can use the isDigit() method provided by the Character class in Java. The isDigit() method is of the Character class

PHP regular expressions are a powerful tool for text processing and conversion. It can effectively manage text information by parsing text content and replacing or intercepting it according to specific patterns. Among them, a common application of regular expressions is to replace strings starting with specific characters. We will explain this as follows

Golang regular expressions use the pipe character | to match multiple words or strings, separating each option as a logical OR expression. For example: matches "fox" or "dog": fox|dog matches "quick", "brown" or "lazy": (quick|brown|lazy) matches "Go", "Python" or "Java": Go|Python |Java matches words or 4-digit zip codes: ([a-zA

How to use the isInfinite() method of the Double class to determine whether a number is infinity. In Java, the Double class is a wrapper class used to represent floating point numbers. This class provides a series of methods that can conveniently operate on floating point numbers. Among them, the isInfinite() method is used to determine whether a floating point number is infinite. Infinity refers to positive infinity and negative infinity that are so large that they exceed the range that floating point numbers can represent. In computers, the maximum value of a floating point number can be obtained through the Double class

How to remove Chinese in PHP using regular expressions: 1. Create a PHP sample file; 2. Define a string containing Chinese and English; 3. Use "preg_replace('/([\x80-\xff]*)/i', '',$a);" The regular method can remove Chinese characters from the query results.

Question: How to determine whether the date is the previous day in Go language? In daily development, we often encounter situations where we need to determine whether the date is the previous day. In the Go language, we can implement this function through time calculation. The following will be combined with specific code examples to demonstrate how to determine whether the date is the previous day in Go language. First, we need to import the time package in the Go language. The code is as follows: import("time") Then, we define a function IsYest
