“Platz in der Saite finden” Code-Antworten

Platz in der Saite finden

public static boolean containsWhiteSpace(final String testCode){
    if(testCode != null){
        for(int i = 0; i < testCode.length(); i++){
            if(Character.isWhitespace(testCode.charAt(i))){
                return true;
            }
        }
    }
    return false;
}
Dangerous Dogfish

Platz in der Saite finden

// C program to illustrate
// isspace() function
#include <ctype.h>
#include <stdio.h>
int main()
{
    // taking input
    char ch = ' ';
  
    // checking is it space?
    if (isspace(ch))
        printf("\nEntered character is space");
    else
        printf("\nEntered character is not space");
}
red-kid

Platz in der Saite finden

text = "This is simple extample for count spaces"
text.split(" ").length - 1;
Elated Eel

Platz in der Saite finden

// CPP program to count white spaces in a string
#include <iostream>
#include <cstring>
#include <cctype>
using namespace std;
  
// function to calculate whitespaces
void space(string& str)
{
    int count = 0;
    int length = str.length();
    for (int i = 0; i < length; i++) {
        int c = str[i];
        if (isspace(c))
            count++;
    }
    cout << count;
}
  
// Driver Code
int main()
{
    string str = "Geeks for geeks";
    space(str);
    return 0;
}
red-kid

Platz in der Saite finden

def tt(w): 
    if ' ' in w: 
       print 'space' 
    else: 
       print 'no space' 

>>   tt('b ')
>> space
>>  tt('b b')
>> space
>>  tt('bb')
>> no space
Shy Shrike

Ähnliche Antworten wie “Platz in der Saite finden”

Fragen ähnlich wie “Platz in der Saite finden”

Weitere verwandte Antworten zu “Platz in der Saite finden” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen