我最近在bash练习中遇到了一个问题,那就是创建一个脚本来检查用户输入的日期是否与我的某个日期匹配。
为了更深入地分析它,我的练习是用大括号扩展来检查模式匹配,但自从我尝试了下面这些行之后,它就变得非常棘手,但它们都不起作用。希望你们能帮帮我。
echo -e "Enter your birthday: \c"
read birthday
WoodRat={19240205..19250123}
if [[ $birthday =~ $WoodRat ]]; then
echo "Your Chinese Zodiac is: Wood Rat "
e
我已经开始练习SQL,我想我需要复习一些主题。
hackerrank中的问题语句指出,查询列出了不以元音结尾的站点中的城市名称。
我尝试使用通配符'%[^aeiou]'
SELECT Distinct City
FROM Station
Where City LIKE '%[^aeiou]'
Order By City;
编译器消息:回答错误。
我知道执行程序的其他方法,但这个方法有什么问题。另外,我想知道REGEXP '[^aiueo]$'是如何工作的,但是Like '%[^aeiou]或Not Like '%[ae
您好,我在Javascript中有一个问题,是否可以使用给定的数组,例如
["old", "great", "other", "long", "good", "last"]
如果你有一个
var str = "oldgreatotherlonggoodlastfirstnewownlittle"
并使用数组和正则表达式用空格打印它?
例如:
old great other long good lastfirstnewownlittle
我只是在用javascript做一个简单的web
我有一个文本文件,里面有很多URL。URls有很多不同的结尾,比如.net,.com,.de等等.所有的URL都没有http:// oder。在前面。该文档中还有许多其他文本,如下所示:
2014/05/03 Red V!per M R United States jsugarcia.com/viper.gif Linux mirror
2014/05/03 Red V!per M R United States thepeoplecenter.org/viper.gif Linux mirror
2014/05/
我有一个类似如下的字符串:
Brief Exercise 1-1 Types of Businesses Brief Exercise 1-2 Forms of Organization Brief Exercise 1-3 Business Activities.
我想使用正则表达式断开上面的字符串,这样它就可以如下所示:
Types of Businesses
Forms of Organization
Business Activities.
请不要说我可以用1-1,1-2和1-3来打破它,因为它会在句子之间带来“简短练习”这个词。稍后,我可以进行练习1-1或问题1-1。所以我想要一些通
我正在练习,我用JS写了最后一个单词的长度。 var lengthOfLastWord = function (s) {
var words = s.split(" ");
var len = words.length;
for (let i = 0; i < len; i++) {
if (len == 1){
var last_element = words[0];
}
else {
var last_element = words[len - 1
刚开始使用Linux并练习使用不同的命令,作为一个学习练习,我试图将一个文件附加到我使用以下命令创建的名为"test.tar“的tar存档中:
tar rvf test.tar newfile
它返回了错误:
tar: newfile: Cannot stat: No such file or directory
tar: Exiting with failure status due to previous errors
我也试过:
tar -rvf test.tar newfile
结果是一样的。
sudo apt-get autoremove .
产出:
WARNING: The following essential packages will be removed.
This should NOT be done unless you know exactly what you are doing!
apt libapt-pkg4.12 (due to apt) libc6 (due to apt) libgcc1 (due to apt)
libstdc++6 (due to apt) ubuntu-keyring (due to apt) gnupg (due to apt)