Skip to main content

Coding Challenge React Programming : String Manipulation Coding Challenge - 1!

String Manipulation Coding challenges using React-Typescript

Requirement:

Given a string may contain spaces, convert them to

  • All first character caps
  • All Even numbers caps
  • All Odd Numbers small
  • Consider the strings are starting with 0 - Even number

 Stack Blitz Console:

import React, { Component } from 'react';
import { render } from 'react-dom';
import Hello from './Hello';

import './style.css';

interface AppProps {}
interface AppState {
  namestring;
  inputstring;
  resultstring;
}

class App extends Component<AppPropsAppState> {
  bResultany;
  constructor(props) {
    super(props);
    this.state = {
      name: 'React Programming Coding Challenge: String Manipulation Coding Challenge - 1',
      input: '',
      result: 'Result: No Result, input string to process'
    };
    this.handleChange = this.handleChange.bind(this);
    this.convertClicked = this.convertClicked.bind(this);
    this.processString = this.processString.bind(this);
  }
  convertClicked = (eany=> {
    //alert(this.state.result);
    this.setState({
      result: this.processString(e)
    });
    e.preventDefault();
  };

  handleChange = (eany=> {
    this.setState({
      input: e.target.value
    });
  };

  processString = (eany=> {
    let returnValue = '';
    let splitted = this.state.input.split(' ');
    //alert(this.state.input);
    for (let i = 0i < splitted.lengthi++) {
      returnValue += this.applyLogic(esplitted[i]);
      if (i == splitted.length - 1) {
      } else {
        returnValue += ' ';
      }
    }
    return returnValue;
  };

  applyLogic = (eanystrstring=> {
    let res = '';
    for (let i = 0i < str.lengthi++) {
      if (i == 0) {
        res += str.charAt(i).toUpperCase();
      } else if (i == 1) {
        res += str.charAt(i).toLowerCase();
      } else if (i % 2 == 0) {
        res += str.charAt(i).toUpperCase();
      } else {
        res += str.charAt(i).toLowerCase();
      }
    }
    return res;
  };

  render() {
    return (
      <div>
        <Hello name={this.state.name} />
        <p>String Manipulation Coding challenges using React-Typescript</p>
        <div>
          <p>Given a string may contain spaces, convert them to</p>
          <ul>
            <li>All first character caps</li>
            <li>All Even numbers caps</li>
            <li>All Odd Numbers small</li>
            <li>Consider the strings are starting with 0 - Even number</li>
          </ul>
        </div>

        <div>
          <form>
            <label>
              Enter the Text:
              <input
                type="text"
                value={this.state.input}
                onChange={this.handleChange}
                name="inputValue"
              />
            </label>
            {/* <input type="submit" value="Submit" /> */}
            <button onClick={this.convertClicked}>Convert!</button>
            <br />
            <label>{this.state.result}</label>
          </form>
        </div>
      </div>
    );
  }
}

render(<App />document.getElementById('root'));


 

 The complete source code can be found here

Comments

Popular posts from this blog

Using of global variables in C# - Drawbacks & Solutions

How using global variables can have implications on the design, maintainability, and test-ability of C# code: Harder to understand and reason about the code:       class Program     {         public static int globalCounter = 0;         static void Main()         {             globalCounter++;             Console.WriteLine(globalCounter);         }     }   In this example, the global variable globalCounter is accessible from anywhere in the program, including the Main method. It's not clear where the value of the globalCounter is updated, it could be updated in other methods or classes, making it harder to trace the flow of data and understand the source of bugs.   More prone to errors:       class Program     {         public static string globalString;         static void Main()         {             globalString = "Hello" ;             Method1();             Method2();         }         static void Method1()         {

Task Parallel Library (TPL) and Akka.NET Alternatives

Task Parallel Library (TPL) and Akka.NET are among the most commonly used libraries for parallel and concurrent programming in the .NET ecosystem. However, there are also several other options available, depending on your specific needs: Parallel Language Integrated Query (PLINQ) is a parallel programming feature of .NET that provides an easy and efficient way to perform operations on collections in parallel. LINQ (Language Integrated Query) is a powerful feature in .NET that allows developers to work with data in a more declarative and language-integrated manner. While LINQ queries are inherently sequential, PLINQ extends LINQ by providing parallel versions of the query operators, allowing some queries to execute faster by utilizing multiple processors or cores on a machine. PLINQ is great when you are working with large collections where operations might be CPU-intensive or I/O-bound and could potentially be sped up by parallel execution. Here is a simple example of a PLI

SOLID Principles with Real World examples in C#

  SOLID Principles with Real World examples in C#   SOLID principles are formed by using S Single Responsibility Principles (SRP) O Open Closed Principle (OCP) L Liskov’s Substitution Principle (LCP) I Interface Segregation Principle (ISP) D Dependency Inversion Principle (DIP)   S Single Responsibility Principles (SRP) There should never be more than one reason for a class to change, to be precise one class should have only one responsibility Single Responsibility Principles (SRP) Real world example, A perfect match for SRP is Microservices , a Microservice will not contain functionalities other than the one it is designated to do,  Example ·                   Order Processing Service, ·                   Shipment Management Service, ·                   User Authentication Service, ·                   Catalogue List Service       class OrderProcessor     {         public void Process(Order order)         {             // Check inven