python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Returning entries from a data set that contain a specific string in Python
I have a data set called df with the information of the name of the Drugs that has been administered. The column "drug_name" consists of all the various drug names. I would like to extract e...
Jan
Votes: 0
Answers: 1
Matching a specific string between foward slash or # using regex
I'm trying to make this regex:
([?=section\/en\/]*)([^\/#]*)
For these examples:
https://www.test.com/en/string-to-get#cid=4949
https://www.test.com/en/section/string-to-get/page&2#cid=4949
https...
Juan Manuel
Votes: 0
Answers: 1
matching two column by numbers, in Knime
I want to “match” two column based on numbers, create new column with those matching True and those not matching is False for example, two column are “Node id” and “IDs”
Node id
IDs
Matching
...
Muhammad
Votes: 0
Answers: 0
How to remove the pattern string until there is no pattern string in the text?
Problem Descripition
You are given 2 strings,text and pattern , you should do the following operations
If pattern is not in text, goto 4
delete the first occurrence of pattern in text
goto 1
prin...
233
Votes: 0
Answers: 0